diff --git a/code/modules/mining/lavaland/necropolis_chests.dm b/code/modules/mining/lavaland/necropolis_chests.dm index 0e9f69adba5..2277fa64934 100644 --- a/code/modules/mining/lavaland/necropolis_chests.dm +++ b/code/modules/mining/lavaland/necropolis_chests.dm @@ -645,7 +645,7 @@ /obj/item/melee/transforming/cleaving_saw/examine(mob/user) ..() - to_chat(user, "It is [active ? "open, and will cleave enemies in a wide arc":"closed, and can be used for rapid consecutive attacks that cause beastly enemies to bleed"].
\ + to_chat(user, "It is [active ? "open, will cleave enemies in a wide arc and deal additional damage to fauna":"closed, and can be used for rapid consecutive attacks that cause fauna to bleed"].
\ Both modes will build up existing bleed effects, doing a burst of high damage if the bleed is built up high enough.
\ Transforming it immediately after an attack causes the next attack to come out faster.
") @@ -666,9 +666,9 @@ /obj/item/melee/transforming/cleaving_saw/transform_messages(mob/living/user, supress_message_text) if(!supress_message_text) if(active) - to_chat(user, "You open [src]. It will now cleave enemies in a wide arc.") + to_chat(user, "You open [src]. It will now cleave enemies in a wide arc and deal additional damage to fauna.") else - to_chat(user, "You close [src]. It will now attack rapidly and cause beastly enemies to bleed.") + to_chat(user, "You close [src]. It will now attack rapidly and cause fauna to bleed.") playsound(user, 'sound/magic/clockwork/fellowship_armory.ogg', 35, TRUE, frequency = 90000 - (active * 30000)) /obj/item/melee/transforming/cleaving_saw/clumsy_transform_effect(mob/living/user)