Revert "12/21 modernizations from TG live"
This commit is contained in:
@@ -135,18 +135,16 @@
|
||||
|
||||
|
||||
var/obj/item/stack/cable_coil/C = I
|
||||
if(C.get_amount() < 10)
|
||||
if(C.amount < 10)
|
||||
user << "<span class='warning'>You need more wires!</span>"
|
||||
return
|
||||
|
||||
user << "<span class='notice'>You start building the power terminal...</span>"
|
||||
playsound(src.loc, 'sound/items/Deconstruct.ogg', 50, 1)
|
||||
|
||||
if(do_after(user, 20, target = src) && C.get_amount() >= 10)
|
||||
if(C.get_amount() < 10 || !C)
|
||||
return
|
||||
if(do_after(user, 20, target = src) && C.amount >= 10)
|
||||
var/obj/structure/cable/N = T.get_cable_node() //get the connecting node cable, if there's one
|
||||
if (prob(50) && electrocute_mob(usr, N, N, 1, TRUE)) //animate the electrocution if uncautious and unlucky
|
||||
if (prob(50) && electrocute_mob(usr, N, N)) //animate the electrocution if uncautious and unlucky
|
||||
var/datum/effect_system/spark_spread/s = new /datum/effect_system/spark_spread
|
||||
s.set_up(5, 1, src)
|
||||
s.start()
|
||||
@@ -164,7 +162,7 @@
|
||||
|
||||
//disassembling the terminal
|
||||
if(istype(I, /obj/item/weapon/wirecutters) && terminal && panel_open)
|
||||
terminal.dismantle(user, I)
|
||||
terminal.dismantle(user)
|
||||
return
|
||||
|
||||
//crowbarring it !
|
||||
@@ -177,7 +175,7 @@
|
||||
|
||||
return ..()
|
||||
|
||||
/obj/machinery/power/smes/on_deconstruction()
|
||||
/obj/machinery/power/smes/deconstruction()
|
||||
for(var/obj/item/weapon/stock_parts/cell/cell in component_parts)
|
||||
cell.charge = (charge / capacity) * cell.maxcharge
|
||||
|
||||
|
||||
Reference in New Issue
Block a user