mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-18 18:46:24 +01:00
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:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user