mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-30 02:52:30 +00:00
## About The Pull Request stop forgetting to include mapload, if you don't include it then every single subtype past it by default doesn't include it for example, `obj/item` didn't include mapload so every single item by default didn't fill in mapload  ## Regex used: procs without args, not even regex `/Initialize()` procs with args `\/Initialize\((?!mapload)((.)*\w)?` cleanup of things i didn't want to mapload: `\/datum\/(.)*\/Initialize\(mapload`
23 lines
785 B
Plaintext
23 lines
785 B
Plaintext
|
|
/obj/structure/chair/e_chair
|
|
name = "electric chair"
|
|
desc = "Looks absolutely SHOCKING!"
|
|
icon_state = "echair0"
|
|
var/last_time = 1
|
|
item_chair = null
|
|
|
|
/obj/structure/chair/e_chair/Initialize(mapload)
|
|
. = ..()
|
|
var/obj/item/assembly/shock_kit/stored_kit = new(contents)
|
|
var/image/export_to_component = image('icons/obj/chairs.dmi', loc, "echair_over")
|
|
AddComponent(/datum/component/electrified_buckle, (SHOCK_REQUIREMENT_ITEM | SHOCK_REQUIREMENT_LIVE_CABLE | SHOCK_REQUIREMENT_SIGNAL_RECEIVED_TOGGLE), stored_kit, list(export_to_component))
|
|
|
|
/obj/structure/chair/e_chair/attackby(obj/item/W, mob/user, params)
|
|
if(W.tool_behaviour == TOOL_WRENCH)
|
|
var/obj/structure/chair/C = new /obj/structure/chair(loc)
|
|
W.play_tool_sound(src)
|
|
C.setDir(dir)
|
|
qdel(src)
|
|
return
|
|
. = ..()
|