From f0d219e9994b0dfcd559659c60a374b8e7f5a52d Mon Sep 17 00:00:00 2001 From: timothyteakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Tue, 2 Mar 2021 14:26:53 +0000 Subject: [PATCH] Update pet_carrier.dm --- code/game/objects/items/pet_carrier.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/pet_carrier.dm b/code/game/objects/items/pet_carrier.dm index 132f191572..f0d66d9097 100644 --- a/code/game/objects/items/pet_carrier.dm +++ b/code/game/objects/items/pet_carrier.dm @@ -328,8 +328,9 @@ REMOVE_TRAIT(occupant, TRAIT_RESISTHIGHPRESSURE, "bluespace_container_resist_high_pressure") REMOVE_TRAIT(occupant, TRAIT_RESISTLOWPRESSURE, "bluespace_container_resist_low_pressure") name = initial(name) - to_chat(occupant, "You pop out of the [src], slightly dazed!") - occupant.Stun(5 SECONDS) + if(iscarbon(occupant)) + to_chat(occupant, "You pop out of the [src], slightly dazed!") + occupant.Stun(5 SECONDS) /obj/item/pet_carrier/bluespace/return_air() if(!occupant_gas_supply)