This commit is contained in:
timothyteakettle
2020-06-16 02:44:11 +01:00
parent 513a4e3d92
commit b59c8c1af6
6 changed files with 63 additions and 494 deletions
+1 -1
View File
@@ -57,7 +57,7 @@
//after spawning
playsound(src, 'sound/weapons/emitter.ogg', 50, TRUE)
new /obj/item/storage/toolbox/mechanical(landing_turf) //so they can actually escape maint
addtimer(CALLBACK(src, .proc/spawn_hunters), 10 MINUTES)
addtimer(CALLBACK(src, .proc/spawn_hunters), 1 MINUTES)
role_name = "fugitive hunter"
return SUCCESSFUL_SPAWN
@@ -496,11 +496,11 @@
/obj/item/udder
name = "udder"
/obj/item/udder/Initialize(loc, /datum/reagent/reagent)
if(!reagent)
reagent = /datum/reagent/consumable/milk
/obj/item/udder/Initialize(loc, milk_reagent)
if(!milk_reagent)
milk_reagent = /datum/reagent/consumable/milk
create_reagents(50, NONE, NO_REAGENTS_VALUE)
reagents.add_reagent(reagent, 20)
reagents.add_reagent(milk_reagent, 20)
. = ..()
/obj/item/udder/proc/generateMilk(datum/reagent/milk_reagent)