mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-21 07:32:35 +00:00
Atmos techs now spawn with extended capacity emergency tanks
AIs/Cyborgs can no longer drink from the toilet or wash themselves in sinks for the good of IMMERSION git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2836 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -62,7 +62,7 @@
|
|||||||
if(!H) return 0
|
if(!H) return 0
|
||||||
H.equip_if_possible(new /obj/item/device/radio/headset/headset_eng(H), H.slot_ears)
|
H.equip_if_possible(new /obj/item/device/radio/headset/headset_eng(H), H.slot_ears)
|
||||||
H.equip_if_possible(new /obj/item/weapon/storage/backpack(H), H.slot_back)
|
H.equip_if_possible(new /obj/item/weapon/storage/backpack(H), H.slot_back)
|
||||||
H.equip_if_possible(new /obj/item/weapon/storage/box/survival(H.back), H.slot_in_backpack)
|
H.equip_if_possible(new /obj/item/weapon/storage/box/engineer(H.back), H.slot_in_backpack)
|
||||||
H.equip_if_possible(new /obj/item/clothing/under/rank/atmospheric_technician(H), H.slot_w_uniform)
|
H.equip_if_possible(new /obj/item/clothing/under/rank/atmospheric_technician(H), H.slot_w_uniform)
|
||||||
H.equip_if_possible(new /obj/item/clothing/shoes/black(H), H.slot_shoes)
|
H.equip_if_possible(new /obj/item/clothing/shoes/black(H), H.slot_shoes)
|
||||||
H.equip_if_possible(new /obj/item/device/pda/engineering(H), H.slot_belt)
|
H.equip_if_possible(new /obj/item/device/pda/engineering(H), H.slot_belt)
|
||||||
|
|||||||
@@ -8,6 +8,9 @@
|
|||||||
|
|
||||||
|
|
||||||
attack_hand(mob/M as mob)
|
attack_hand(mob/M as mob)
|
||||||
|
if(isrobot(M) || isAI(M))
|
||||||
|
return
|
||||||
|
|
||||||
if(busy)
|
if(busy)
|
||||||
M << "\red Someone's already washing something here."
|
M << "\red Someone's already washing something here."
|
||||||
return
|
return
|
||||||
|
|||||||
@@ -406,6 +406,9 @@
|
|||||||
return
|
return
|
||||||
|
|
||||||
interact(mob/user)
|
interact(mob/user)
|
||||||
|
if(isAI(user) || isrobot(user))
|
||||||
|
return
|
||||||
|
|
||||||
add_fingerprint(user)
|
add_fingerprint(user)
|
||||||
for (var/mob/V in viewers(user))
|
for (var/mob/V in viewers(user))
|
||||||
V.show_message("[user] eagerly drinks the toilet water!", 3)//Yum yum yum
|
V.show_message("[user] eagerly drinks the toilet water!", 3)//Yum yum yum
|
||||||
|
|||||||
Reference in New Issue
Block a user