mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 18:32:03 +00:00
Fix queens ventcrawling
Nobody thought this was worth reporting as a bug though it totally was.
This commit is contained in:
@@ -36,12 +36,15 @@ var/list/ventcrawl_machinery = list(/obj/machinery/atmospherics/unary/vent_pump,
|
||||
return
|
||||
..(A)
|
||||
|
||||
/mob/living/carbon/alien/AltClickOn(var/atom/A)
|
||||
if(is_type_in_list(A,ventcrawl_machinery))
|
||||
/mob/living/carbon/alien/AltClickOn(var/atom/A, var/ignore = 0)
|
||||
if(is_type_in_list(A,ventcrawl_machinery) && !ignore)
|
||||
src.handle_ventcrawl(A)
|
||||
return
|
||||
..(A)
|
||||
|
||||
/mob/living/carbon/alien/humanoid/queen/AltClickOn(var/atom/A)
|
||||
..(A,1)
|
||||
|
||||
|
||||
/mob/living/proc/handle_ventcrawl(var/atom/clicked_on) // -- TLE -- Merged by Carn
|
||||
diary << "[src] is ventcrawling."
|
||||
|
||||
Reference in New Issue
Block a user