Lava is no longer a plating + all lava is smooth (#23482)

* woohoo

* sirryan review

* accept incoming and stuff

* fuck
This commit is contained in:
Contrabang
2023-12-16 06:47:44 -05:00
committed by GitHub
parent 6a84d32190
commit 09dd7309ad
32 changed files with 8490 additions and 8492 deletions
@@ -213,7 +213,7 @@
hitsound = 'sound/weapons/sear.ogg'
resistance_flags = LAVA_PROOF | FIRE_PROOF | ACID_PROOF
needs_permit = TRUE
var/turf_type = /turf/simulated/floor/plating/lava/smooth
var/turf_type = /turf/simulated/floor/lava
var/transform_string = "lava"
var/reset_turf_type = /turf/simulated/floor/plating/asteroid/basalt
var/reset_string = "basalt"
@@ -135,7 +135,7 @@
var/turf/next = get_step(src, direction)
var/turf/current = get_turf(src)
if(istype(next, /turf/simulated/floor/plating/lava/smooth) || istype(current, /turf/simulated/floor/plating/lava/smooth)) //We can move from land to lava, or lava to land, but not from land to land
if(istype(next, /turf/simulated/floor/lava) || istype(current, /turf/simulated/floor/lava)) //We can move from land to lava, or lava to land, but not from land to land
..()
else
if(last_message_time + 1 SECONDS < world.time)