Merge pull request #21800 from Shadowlight213/changeturffix

Fixes lavaland cave generation creating airless turfs.
This commit is contained in:
oranges
2016-11-29 17:08:09 +13:00
committed by GitHub
6 changed files with 13 additions and 12 deletions

View File

@@ -996,7 +996,7 @@
for(var/F in RANGE_TURFS(1, src))
if(ismineralturf(F))
var/turf/closed/mineral/M = F
M.ChangeTurf(M.turf_type)
M.ChangeTurf(M.turf_type,FALSE,TRUE)
gps = new /obj/item/device/gps/internal(src)
/mob/living/simple_animal/hostile/spawner/lavaland/Destroy()