mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-22 19:47:47 +01:00
other.dm
This commit is contained in:
@@ -223,7 +223,7 @@
|
||||
if(do_after(src, 30, A))
|
||||
|
||||
visible_message(span_notice("[src] fertilizes \the [A]."))
|
||||
T.reagents.add_reagent("ammonia", 10)
|
||||
T.reagents.add_reagent(REAGENT_ID_AMMONIA, 10)
|
||||
|
||||
busy = 0
|
||||
action = ""
|
||||
|
||||
@@ -519,7 +519,7 @@ var/global/list/robot_modules = list(
|
||||
src.modules += new /obj/item/borg/sight/janitor(src)
|
||||
var/obj/item/reagent_containers/spray/LS = new /obj/item/reagent_containers/spray(src)
|
||||
src.emag += LS
|
||||
LS.reagents.add_reagent("lube", 250)
|
||||
LS.reagents.add_reagent(REAGENT_ID_LUBE, 250)
|
||||
LS.name = "Lube spray"
|
||||
|
||||
//Starts empty. Can only recharge with recycled material.
|
||||
@@ -568,7 +568,7 @@ var/global/list/robot_modules = list(
|
||||
|
||||
var/obj/item/reagent_containers/spray/LS = locate() in src.emag
|
||||
if(LS)
|
||||
LS.reagents.add_reagent("lube", 2 * amount)
|
||||
LS.reagents.add_reagent(REAGENT_ID_LUBE, 2 * amount)
|
||||
|
||||
/obj/item/robot_module/robot/clerical
|
||||
name = "service robot module"
|
||||
|
||||
Reference in New Issue
Block a user