Skip to content

Commit

Permalink
bugfix: Fixed intercom disassembling
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladisvell committed Oct 26, 2024
1 parent 426672a commit 09805b3
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 09805b3

Please sign in to comment.