mirror of
https://github.com/KabKebab/GS13.git
synced 2026-08-24 13:36:15 +01:00
it compiles, that's better than it not compiling, right?
This commit is contained in:
@@ -467,7 +467,7 @@
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/lollipop/cyborg/Initialize()
|
||||
. = ..()
|
||||
addtimer(CALLBACK(src, .proc/spamcheck), 1200)
|
||||
addtimer(CALLBACK(src,PROC_REF(spamcheck)), 1200)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/lollipop/cyborg/equipped(mob/living/user, slot)
|
||||
. = ..(user, slot)
|
||||
@@ -495,7 +495,7 @@
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/gumball/cyborg/Initialize()
|
||||
. = ..()
|
||||
addtimer(CALLBACK(src, .proc/spamcheck), 1200)
|
||||
addtimer(CALLBACK(src,PROC_REF(spamcheck)), 1200)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/gumball/cyborg/equipped(mob/living/user, slot)
|
||||
. = ..(user, slot)
|
||||
|
||||
@@ -188,7 +188,7 @@
|
||||
mob_occupant.death(1)
|
||||
mob_occupant.ghostize()
|
||||
qdel(src.occupant)
|
||||
addtimer(CALLBACK(src, .proc/make_meat, skin, allmeat, meat_produced, gibtype, diseases), gibtime)
|
||||
addtimer(CALLBACK(src,PROC_REF(make_meat), skin, allmeat, meat_produced, gibtype, diseases), gibtime)
|
||||
|
||||
/obj/machinery/gibber/proc/make_meat(obj/item/stack/sheet/animalhide/skin, list/obj/item/reagent_containers/food/snacks/meat/slab/allmeat, meat_produced, gibtype, list/datum/disease/diseases)
|
||||
playsound(src.loc, 'sound/effects/splat.ogg', 50, 1)
|
||||
|
||||
@@ -309,7 +309,7 @@
|
||||
return
|
||||
time--
|
||||
use_power(500)
|
||||
addtimer(CALLBACK(src, .proc/loop, type, time, wait), wait)
|
||||
addtimer(CALLBACK(src,PROC_REF(loop), type, time, wait), wait)
|
||||
|
||||
/obj/machinery/microwave/proc/loop_finish()
|
||||
operating = FALSE
|
||||
|
||||
@@ -77,7 +77,7 @@ GLOBAL_LIST_EMPTY(monkey_recyclers)
|
||||
use_power(500)
|
||||
stored_matter += cube_production
|
||||
addtimer(VARSET_CALLBACK(src, pixel_x, initial(pixel_x)))
|
||||
addtimer(CALLBACK(GLOBAL_PROC, /proc/to_chat, user, "<span class='notice'>The machine now has [stored_matter] monkey\s worth of material stored.</span>"))
|
||||
addtimer(CALLBACK(GLOBAL_PROC_REF(to_chat), user, "<span class='notice'>The machine now has [stored_matter] monkey\s worth of material stored.</span>"))
|
||||
|
||||
/obj/machinery/monkey_recycler/interact(mob/user)
|
||||
if(stored_matter >= 1)
|
||||
|
||||
Reference in New Issue
Block a user