Skip to content

Commit

Permalink
bugfix: Fixed intercom disassembling (ss220-space#6085)
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladisvell authored Nov 2, 2024
1 parent b76e016 commit fa2ec2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/game/objects/items/devices/radio/intercom.dm
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@


/obj/item/radio/intercom/wirecutter_act(mob/user, obj/item/I)
if(buildstage != INTERCOM_BUILD_WIRED || b_stat || wires.is_all_cut())
if((buildstage != INTERCOM_BUILD_WIRED || b_stat) && !wires.is_all_cut())
return ..()
. = TRUE
if(!I.use_tool(src, user, volume = I.tool_volume))
Expand Down

0 comments on commit fa2ec2a

Please sign in to comment.