mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-09 16:14:13 +00:00
RAAAAARRRGGHHH
This commit is contained in:
@@ -142,6 +142,7 @@ var/list/ventcrawl_machinery = list(/obj/machinery/atmospherics/unary/vent_pump,
|
||||
/mob/living/proc/add_ventcrawl(obj/machinery/atmospherics/starting_machine)
|
||||
//writepanic("[__FILE__].[__LINE__] ([src.type])([usr ? usr.ckey : ""]) \\/mob/living/proc/add_ventcrawl() called tick#: [world.time]")
|
||||
is_ventcrawling = 1
|
||||
candrop = 0
|
||||
var/datum/pipe_network/network = starting_machine.return_network(starting_machine)
|
||||
if(!network)
|
||||
return
|
||||
@@ -155,6 +156,7 @@ var/list/ventcrawl_machinery = list(/obj/machinery/atmospherics/unary/vent_pump,
|
||||
/mob/living/proc/remove_ventcrawl()
|
||||
//writepanic("[__FILE__].[__LINE__] ([src.type])([usr ? usr.ckey : ""]) \\/mob/living/proc/remove_ventcrawl() called tick#: [world.time]")
|
||||
is_ventcrawling = 0
|
||||
candrop = 1
|
||||
if(client)
|
||||
for(var/image/current_image in pipes_shown)
|
||||
client.images -= current_image
|
||||
|
||||
@@ -141,7 +141,7 @@
|
||||
var/obj/item/TS
|
||||
if(isnull(module_active))
|
||||
return
|
||||
if((module_active in src.contents) && !(module_active in src.module.modules) && (module_active != src.module.emag))
|
||||
if((module_active in src.contents) && !(module_active in src.module.modules) && (module_active != src.module.emag) && candrop)
|
||||
TS = tool_state
|
||||
drop_item(TS)
|
||||
if(sight_state == module_active)
|
||||
|
||||
Reference in New Issue
Block a user