diff --git a/code/modules/mob/living/bot/bot_vr.dm b/code/modules/mob/living/bot/bot_vr.dm new file mode 100644 index 0000000000..958db0dc9f --- /dev/null +++ b/code/modules/mob/living/bot/bot_vr.dm @@ -0,0 +1,2 @@ +/mob/living/bot + no_vore = TRUE \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse_vr.dm b/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse_vr.dm index 8fe4b53b06..73deeefdb5 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse_vr.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse_vr.dm @@ -1,7 +1,7 @@ /mob/living/simple_mob/animal/passive/mouse nutrition = 20 //To prevent draining maint mice for infinite food. Low nutrition has no mechanical effect on simplemobs, so wont hurt mice themselves. - no_vore = 1 //Mice can't eat others due to the amount of bugs caused by it. + no_vore = TRUE //Mice can't eat others due to the amount of bugs caused by it. vore_taste = "cheese" can_pull_size = ITEMSIZE_TINY // Rykka - Uncommented these. Not sure why they were commented out in the original Polaris files, maybe a mob rework mistake? diff --git a/code/modules/mob/living/voice/voice_vr.dm b/code/modules/mob/living/voice/voice_vr.dm new file mode 100644 index 0000000000..0eabd01a34 --- /dev/null +++ b/code/modules/mob/living/voice/voice_vr.dm @@ -0,0 +1,2 @@ +/mob/living/voice + no_vore = TRUE \ No newline at end of file diff --git a/vorestation.dme b/vorestation.dme index 7746ce5e77..bce7bb0c1a 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -2248,6 +2248,7 @@ #include "code\modules\mob\living\logout.dm" #include "code\modules\mob\living\say.dm" #include "code\modules\mob\living\bot\bot.dm" +#include "code\modules\mob\living\bot\bot_vr.dm" #include "code\modules\mob\living\bot\cleanbot.dm" #include "code\modules\mob\living\bot\ed209bot.dm" #include "code\modules\mob\living\bot\edCLNbot.dm" @@ -2643,6 +2644,7 @@ #include "code\modules\mob\living\simple_mob\subtypes\vore\shadekin\shadekin.dm" #include "code\modules\mob\living\simple_mob\subtypes\vore\shadekin\types.dm" #include "code\modules\mob\living\voice\voice.dm" +#include "code\modules\mob\living\voice\voice_vr.dm" #include "code\modules\mob\new_player\login.dm" #include "code\modules\mob\new_player\login_vr.dm" #include "code\modules\mob\new_player\logout.dm"