Skip to content

Commit

Permalink
Update code/modules/power/apc.dm
Browse files Browse the repository at this point in the history
  • Loading branch information
realforest2001 authored Jun 17, 2023
1 parent 3549244 commit 047ff4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/power/apc.dm
Original file line number Diff line number Diff line change
Expand Up @@ -856,7 +856,7 @@ GLOBAL_LIST_INIT(apc_wire_descriptions, list(
playsound(src.loc, 'sound/effects/sparks2.ogg', 25, 1)
grabber.apply_damage(10,0, BURN)
return FALSE
if(!cell || !cell.charge <= 0)
if(!cell || cell.charge <= 0)
to_chat(user, SPAN_WARNING("There is no charge to draw from that APC."))
return FALSE

Expand Down

0 comments on commit 047ff4d

Please sign in to comment.