Skip to content

Commit

Permalink
Fixes Admin Comms Consoles (ParadiseSS13#27274)
Browse files Browse the repository at this point in the history
  • Loading branch information
Contrabang authored Nov 5, 2024
1 parent 78ac77b commit 9e6d8da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/game/machinery/computer/communications.dm
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@
if("make_cc_announcement")
if(!ADMIN_CHECK(ui.user))
return
if(!text2bool(params["classified"]))
if(params["classified"] != 1) // this uses 1/0 on the js side instead of "true" or "false"
GLOB.major_announcement.Announce(
params["text"],
new_title = "Central Command Report",
Expand Down

0 comments on commit 9e6d8da

Please sign in to comment.