mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-15 20:52:41 +00:00
Merge pull request #8485 from VOREStation/upstream-merge-7375
[MIRROR] Fix scrubbers
This commit is contained in:
@@ -211,6 +211,7 @@
|
|||||||
else
|
else
|
||||||
interact(H)
|
interact(H)
|
||||||
|
|
||||||
|
|
||||||
/mob/living/bot/medbot/proc/interact(mob/user)
|
/mob/living/bot/medbot/proc/interact(mob/user)
|
||||||
var/dat
|
var/dat
|
||||||
dat += "<TT><B>Automatic Medical Unit v1.0</B></TT><BR><BR>"
|
dat += "<TT><B>Automatic Medical Unit v1.0</B></TT><BR><BR>"
|
||||||
|
|||||||
@@ -27,6 +27,9 @@ var/list/ventcrawl_machinery = list(
|
|||||||
if(!(/mob/living/proc/ventcrawl in verbs))
|
if(!(/mob/living/proc/ventcrawl in verbs))
|
||||||
to_chat(src, "<span class='warning'>You don't possess the ability to ventcrawl!</span>")
|
to_chat(src, "<span class='warning'>You don't possess the ability to ventcrawl!</span>")
|
||||||
return FALSE
|
return FALSE
|
||||||
|
if(pulling)
|
||||||
|
to_chat(src, "<span class='warning'>You cannot bring \the [pulling] into the vent with you!</span>")
|
||||||
|
return FALSE
|
||||||
if(incapacitated())
|
if(incapacitated())
|
||||||
to_chat(src, "<span class='warning'>You cannot ventcrawl in your current state!</span>")
|
to_chat(src, "<span class='warning'>You cannot ventcrawl in your current state!</span>")
|
||||||
return FALSE
|
return FALSE
|
||||||
|
|||||||
Reference in New Issue
Block a user