From dd517ee96d48a63192696fbe518758abb78ccf26 Mon Sep 17 00:00:00 2001 From: ReoDaProtovali Date: Thu, 8 Aug 2024 20:38:27 -0500 Subject: [PATCH] better code --- GainStation13/code/modules/mob/living/emote.dm | 4 ++-- tgstation.dme | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/GainStation13/code/modules/mob/living/emote.dm b/GainStation13/code/modules/mob/living/emote.dm index 92285bad..75a6439d 100644 --- a/GainStation13/code/modules/mob/living/emote.dm +++ b/GainStation13/code/modules/mob/living/emote.dm @@ -51,7 +51,7 @@ make_noise(user, "brap", FARTING_NOISES) - for(/obj/item/storage/book/bible in get_turf(user)) //Biblefart + if(locate(/obj/item/storage/book/bible) in get_turf(user)) //Biblefart user.gib() . = ..() @@ -85,7 +85,7 @@ make_noise(user, "fart", FARTING_NOISES) - for(/obj/item/storage/book/bible in get_turf(user)) //Biblefart + if(locate(/obj/item/storage/book/bible) in get_turf(user)) //Biblefart user.gib() . = ..() diff --git a/tgstation.dme b/tgstation.dme index 507b7121..dbfc4132 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -3107,10 +3107,10 @@ #include "GainStation13\code\modules\food_and_drinks\objects\candy_flora.dm" #include "GainStation13\code\modules\food_and_drinks\recipes\recipes_ported.dm" #include "GainStation13\code\modules\mob\living\emote.dm" -#include "GainStation13\code\modules\mob\living\vore\eating\living_vr.dm" -#include "GainStation13\code\modules\mob\living\vore\eating\trasheat_lists.dm" #include "GainStation13\code\modules\mob\living\emote_modular.dm" #include "GainStation13\code\modules\mob\living\emote_ported.dm" +#include "GainStation13\code\modules\mob\living\vore\eating\living_vr.dm" +#include "GainStation13\code\modules\mob\living\vore\eating\trasheat_lists.dm" #include "GainStation13\code\modules\reagents\chemistry\reagents\consumable_reagents.dm" #include "GainStation13\code\modules\reagents\chemistry\reagents\dwarverndrinks.dm" #include "GainStation13\code\modules\reagents\chemistry\reagents\fatty_drinks.dm"