Skip to content

Commit

Permalink
FOB Construction Drone's Barbed Wiring Costs 1 instead of 2 (#16742)
Browse files Browse the repository at this point in the history
  • Loading branch information
Runian authored Nov 14, 2024
1 parent 46d4a50 commit fee6a5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/remote_fob/actions_misc.dm
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@
cade = new /obj/structure/barricade/metal(buildplace)
cade.setDir(fobdrone.dir)
if(console.do_wiring)
if(console.metal_remaining <= 1)
if(!console.metal_remaining)
fobdrone.balloon_alert(owner, "Not enough material for razor-wiring.")
return
console.metal_remaining -=2
console.metal_remaining -= 1
cade.wire()
fobdrone.balloon_alert(owner, "Barricade placed with wiring. [console.metal_remaining] metal sheets remaining.")
return
Expand Down

0 comments on commit fee6a5d

Please sign in to comment.