diff --git a/code/modules/ruins/lavaland_ruin_code.dm b/code/modules/ruins/lavaland_ruin_code.dm index f59ab2c25cb..0cc90ca194e 100644 --- a/code/modules/ruins/lavaland_ruin_code.dm +++ b/code/modules/ruins/lavaland_ruin_code.dm @@ -206,7 +206,7 @@ //Wrath /obj/item/weapon/melee/wrathhand - name = "The hand of hatred." + name = "The hand of hatred" force = 0 hitsound = 'sound/magic/WandODeath.ogg' icon_state = "disintegrate" @@ -215,6 +215,8 @@ unacidable = 1 /obj/item/weapon/melee/wrathhand/afterattack(atom/movable/AM, mob/living/carbon/human/user, proximity) + if(!proximity) + return if(AM == user) user << "Surely there is someone you hate more than yourself." else @@ -231,7 +233,7 @@ anchored = 1 icon = 'icons/obj/cult.dmi' name = "Altar of wrath" - desc = "Lay your hand upon the altar and recieve the power to smite your enemies." + desc = "Lay your hand upon the altar and receive the power to smite your enemies." var/used = 0 /obj/structure/wrathaltar/attack_hand(mob/living/user) diff --git a/tgstation.dme b/tgstation.dme index ea64ed95459..9020e3ed817 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -15,7 +15,6 @@ // BEGIN_INCLUDE #include "_maps\__MAP_DEFINES.dm" #include "_maps\tgstation2.dm" -#include "_maps\RandomRuins\LavaRuins\lavaland_surface_wrath.dmm" #include "code\_compile_options.dm" #include "code\hub.dm" #include "code\world.dm"