Merge pull request #6476 from Heroman3003/botnovore

Fixes bots being able to do vore
This commit is contained in:
Novacat
2020-01-19 20:42:32 -05:00
committed by GitHub
4 changed files with 7 additions and 1 deletions

View File

@@ -0,0 +1,2 @@
/mob/living/bot
no_vore = TRUE

View File

@@ -1,7 +1,7 @@
/mob/living/simple_mob/animal/passive/mouse /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. 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" 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? 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?

View File

@@ -0,0 +1,2 @@
/mob/living/voice
no_vore = TRUE

View File

@@ -2248,6 +2248,7 @@
#include "code\modules\mob\living\logout.dm" #include "code\modules\mob\living\logout.dm"
#include "code\modules\mob\living\say.dm" #include "code\modules\mob\living\say.dm"
#include "code\modules\mob\living\bot\bot.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\cleanbot.dm"
#include "code\modules\mob\living\bot\ed209bot.dm" #include "code\modules\mob\living\bot\ed209bot.dm"
#include "code\modules\mob\living\bot\edCLNbot.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\shadekin.dm"
#include "code\modules\mob\living\simple_mob\subtypes\vore\shadekin\types.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.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.dm"
#include "code\modules\mob\new_player\login_vr.dm" #include "code\modules\mob\new_player\login_vr.dm"
#include "code\modules\mob\new_player\logout.dm" #include "code\modules\mob\new_player\logout.dm"