sane stacks (#18342)

* sane stacks

* .

* .

* .

* -

* clean that up

* .

* .

* fix chat scaling

* readd cords

* .

* guh

---------

Co-authored-by: Selis <12716288+ItsSelis@users.noreply.github.com>
This commit is contained in:
Kashargul
2025-08-30 00:57:26 +02:00
committed by GitHub
parent b75a47b66d
commit fac274e5f9
21 changed files with 45 additions and 27 deletions
@@ -208,8 +208,7 @@
/datum/species/protean/equip_survival_gear(var/mob/living/carbon/human/H)
..()
var/obj/item/stack/material/steel/metal_stack = new()
metal_stack.set_amount(5)
var/obj/item/stack/material/steel/metal_stack = new(null, 5)
var/obj/item/clothing/accessory/permit/nanotech/permit = new()
permit.set_name(H.real_name)
@@ -150,7 +150,9 @@
for(var/i = 1 to get_dist(src, destination))
if(stat)
return FALSE // We died or got knocked out on the way.
if(loc == destination)
var/last_loc = loc
if(last_loc == destination)
break // We somehow got there early.
// Update T.
@@ -176,6 +178,8 @@
dig_under_floor(get_turf(src))
playsound(src, 'sound/effects/break_stone.ogg', 75, 1)
sleep(tunnel_tile_speed)
if(last_loc == loc)
return FALSE
// For visuals.
/mob/living/simple_mob/animal/giant_spider/tunneler/proc/submerge()