From 3160d7771dcae517e3c52fa1a76773170605e0ad Mon Sep 17 00:00:00 2001 From: ShizCalev Date: Mon, 30 Apr 2018 05:57:36 -0400 Subject: [PATCH] Removed /obj/item/asteroid path (#37500) * Cleans up some item paths * removed kebab --- .../mob/living/simple_animal/hostile/wumborian_fugu.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/simple_animal/hostile/wumborian_fugu.dm b/code/modules/mob/living/simple_animal/hostile/wumborian_fugu.dm index f324c11cd2..4c9c916085 100644 --- a/code/modules/mob/living/simple_animal/hostile/wumborian_fugu.dm +++ b/code/modules/mob/living/simple_animal/hostile/wumborian_fugu.dm @@ -33,7 +33,7 @@ var/wumbo = 0 var/inflate_cooldown = 0 var/datum/action/innate/fugu/expand/E - loot = list(/obj/item/asteroid/fugu_gland{layer = ABOVE_MOB_LAYER}) + loot = list(/obj/item/fugu_gland{layer = ABOVE_MOB_LAYER}) /mob/living/simple_animal/hostile/asteroid/fugu/Initialize() . = ..() @@ -116,7 +116,7 @@ Deflate() ..(gibbed) -/obj/item/asteroid/fugu_gland +/obj/item/fugu_gland name = "wumborian fugu gland" desc = "The key to the wumborian fugu's ability to increase its mass arbitrarily, this disgusting remnant can apply the same effect to other creatures, giving them great strength." icon = 'icons/obj/surgery.dmi' @@ -126,7 +126,7 @@ layer = MOB_LAYER var/list/banned_mobs -/obj/item/asteroid/fugu_gland/afterattack(atom/target, mob/user, proximity_flag) +/obj/item/fugu_gland/afterattack(atom/target, mob/user, proximity_flag) if(proximity_flag && isanimal(target)) var/mob/living/simple_animal/A = target if(A.buffed || (A.type in banned_mobs) || A.stat)