From 1fc31ff6d4b2b1b4f44e19fbcce435967c320ed3 Mon Sep 17 00:00:00 2001 From: Horatio22 <69338705+Horatio22@users.noreply.github.com> Date: Thu, 2 Feb 2023 14:41:37 -0800 Subject: [PATCH] Changes crate description for snake crate (#73148) ## About The Pull Request Changes the snake cargo crate description from "three poisonous snakes" to "three venomous snakes". While snakes can (rarely) be poisonous, the snakes in-game are venomous. ## Why It's Good For The Game Correct word usage is good. Venomous animals inject toxins via bite or sting (which is what the in-game snakes do). Poisonous animals only transfer toxins when they are consumed. ## Changelog :cl: spellcheck: changes the snake crate description from poisonous to venomous /:cl: --- code/modules/cargo/packs/livestock.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/cargo/packs/livestock.dm b/code/modules/cargo/packs/livestock.dm index 782dec7055d..6db601f25e2 100644 --- a/code/modules/cargo/packs/livestock.dm +++ b/code/modules/cargo/packs/livestock.dm @@ -184,7 +184,7 @@ /datum/supply_pack/critter/snake name = "Snake Crate" desc = "Tired of these MOTHER FUCKING snakes on this MOTHER FUCKING space station? \ - Then this isn't the crate for you. Contains three poisonous snakes." + Then this isn't the crate for you. Contains three venomous snakes." cost = CARGO_CRATE_VALUE * 6 access_view = ACCESS_SECURITY contains = list(/mob/living/simple_animal/hostile/retaliate/snake = 3)