Merge branch 'Aurorastation/development' into Map-Development

This commit is contained in:
LordFowl
2017-01-29 15:38:37 -05:00
218 changed files with 5025 additions and 5528 deletions
+3 -3
View File
@@ -38,7 +38,7 @@
if(1)
new_growth = 2
var/obj/structure/diona/vines/existing = locate() in T
if(!istype(existing)) existing = PoolOrNew(/obj/structure/diona/vines, T)
if(!istype(existing)) existing = getFromPool(/obj/structure/diona/vines, T)
if(existing.growth < new_growth)
existing.growth = new_growth
existing.update_icon()
@@ -161,11 +161,11 @@
switch(value)
if(ARTIFACT_CHAR)
PoolOrNew(/obj/structure/diona/bulb,T)
getFromPool(/obj/structure/diona/bulb,T)
if(MONSTER_CHAR)
spawn_diona_nymph(T)
if(DOOR_CHAR)
var/obj/structure/diona/vines/V = PoolOrNew(/obj/structure/diona/vines,T)
var/obj/structure/diona/vines/V = getFromPool(/obj/structure/diona/vines,T)
V.growth = 3
V.update_icon()
spawn(1)
@@ -47,10 +47,10 @@
// Overwrite turfs.
var/turf/origin = get_turf(src)
origin.ChangeTurf(/turf/simulated/floor/reinforced)
origin.set_light(0) // Forcing updates
origin.reconsider_lights() // Forcing updates
var/turf/T = get_step(origin, src.dir)
T.ChangeTurf(/turf/simulated/floor/reinforced)
T.set_light(0) // Forcing updates
T.reconsider_lights() // Forcing updates
// Destroy turf contents.
for(var/obj/O in origin)