Temporary pod changes

Conflicts:
	maps/tgstation.2.1.0.0.1.dmm
This commit is contained in:
d3athrow
2014-03-21 13:02:01 -05:00
committed by ZomgPonies
parent d680d978f1
commit 8ff71e7626
2 changed files with 18 additions and 0 deletions
+10
View File
@@ -288,3 +288,13 @@
user << "<span class='warning'>She's dead, Jim</span>"
return 0
battery.use(3)
/obj/effect/landmark/spacepod/random
name = "spacepod spawner"
invisibility = 101
icon = 'icons/mob/screen1.dmi'
icon_state = "x"
anchored = 1
/obj/effect/landmark/spacepod/random/New()
..()
+8
View File
@@ -138,6 +138,14 @@ var/global/datum/controller/gameticker/ticker
//Deleting Startpoints but we need the ai point to AI-ize people later
if (S.name != "AI")
del(S)
var/list/obj/effect/landmark/spacepod/L = list()
for(var/obj/effect/landmark/spacepod in landmarks_list)
if(istype(spacepod))
L += spacepod
var/obj/effect/landmark/spacepod/S = pick(L)
new /obj/spacepod/random(S.loc)
for(var/obj in L)
del(obj)
world << "<FONT color='blue'><B>Enjoy the game!</B></FONT>"
world << sound('sound/AI/welcome.ogg') // Skie
//Holiday Round-start stuff ~Carn