More sandbox fixes.

This commit is contained in:
Rob Nelson
2013-09-22 18:47:21 -07:00
parent eb37d5cf49
commit 06f362f9ac
3 changed files with 9 additions and 4 deletions

View File

@@ -174,11 +174,9 @@ datum/hSB
if(!(hsbcanister == "Cancel"))
new hsbcanister(usr.loc)
if("hsbfueltank")
//var/obj/hsb = new/obj/weldfueltank
//hsb.loc = usr.loc
new /obj/structure/reagent_dispensers/fueltank(usr.loc)
if("hsbwatertank")
//var/obj/hsb = new/obj/watertank
//hsb.loc = usr.loc
new /obj/structure/reagent_dispensers/watertank(usr.loc)
if("hsbtoolbox")
var/obj/item/weapon/storage/hsb = new/obj/item/weapon/storage/toolbox/mechanical
for(var/obj/item/device/radio/T in hsb)

View File

@@ -19,3 +19,7 @@
M.CanBuild()
if(emergency_shuttle)
emergency_shuttle.always_fake_recall = 1
/datum/game_mode/latespawn(var/mob/mob)
mob.CanBuild()
mob << "<B>Build your own station with the sandbox-panel command!</B>"

View File

@@ -1023,6 +1023,9 @@ mob/living/carbon/slime/var/temperature_resistance = T0C+75
G.key = ghost.key
G << "You are an adamantine golem. You move slowly, but are highly resistant to heat and cold as well as blunt trauma. You are unable to wear clothes, but can still use most tools. Serve [user], and assist them in completing their goals at any cost."
del (src)
if(ticker.mode.name == "sandbox")
G.CanBuild()
G << "Sandbox tab enabled."
proc/announce_to_ghosts()