mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-13 08:56:49 +01:00
Simulated to Unsimulated (#6410)
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
iterations = 5
|
||||
descriptor = "moon caves"
|
||||
wall_type = /turf/simulated/mineral
|
||||
floor_type = /turf/simulated/floor/asteroid/ash/rocky
|
||||
floor_type = /turf/unsimulated/floor/asteroid/ash/rocky
|
||||
target_turf_type = /turf/unsimulated/mask
|
||||
var/mineral_sparse = /turf/simulated/mineral/random
|
||||
var/mineral_rich = /turf/simulated/mineral/random/high_chance
|
||||
@@ -156,8 +156,8 @@
|
||||
|
||||
/datum/random_map/automata/cave_system/chasms/surface
|
||||
descriptor = "chasm surface"
|
||||
wall_type = /turf/simulated/floor/asteroid/ash
|
||||
wall_type = /turf/unsimulated/floor/asteroid/ash
|
||||
floor_type = /turf/simulated/open/airless
|
||||
target_turf_type = /turf/unsimulated/chasm_mask
|
||||
mineral_sparse = /turf/simulated/floor/asteroid/ash
|
||||
mineral_rich = /turf/simulated/floor/asteroid/ash
|
||||
mineral_sparse = /turf/unsimulated/floor/asteroid/ash
|
||||
mineral_rich = /turf/unsimulated/floor/asteroid/ash
|
||||
|
||||
@@ -28,4 +28,4 @@
|
||||
if(0 to 4)
|
||||
return /turf/simulated/lava
|
||||
else
|
||||
return /turf/simulated/floor/asteroid/basalt
|
||||
return /turf/unsimulated/floor/asteroid/basalt
|
||||
|
||||
@@ -43,7 +43,7 @@
|
||||
|
||||
for(var/i=0,i<chunk_size,i++)
|
||||
for(var/j=0,j<chunk_size,j++)
|
||||
var/turf/simulated/T = locate(tx+j, ty+i, origin_z)
|
||||
var/turf/T = locate(tx+j, ty+i, origin_z)
|
||||
if(!istype(T) || !T.has_resources)
|
||||
continue
|
||||
if(!priority_process)
|
||||
|
||||
Reference in New Issue
Block a user