Skip to content

Commit

Permalink
Fixes issuing no order
Browse files Browse the repository at this point in the history
  • Loading branch information
Drulikar committed May 14, 2024
1 parent c83ab1e commit 3ff2421
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/mob/living/carbon/human/powers/issue_order.dm
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
if(order == "help")
to_chat(src, SPAN_NOTICE("<br>Orders give a buff to nearby soldiers for a short period of time, followed by a cooldown, as follows:<br><B>Move</B> - Increased mobility and chance to dodge projectiles.<br><B>Hold</B> - Increased resistance to pain and combat wounds.<br><B>Focus</B> - Increased gun accuracy and effective range.<br>"))
return
if(order == "cancel")
if(!order || order == "cancel")
return

if(!command_aura_available)
Expand Down

0 comments on commit 3ff2421

Please sign in to comment.