mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
Merge pull request #6476 from Heroman3003/botnovore
Fixes bots being able to do vore
This commit is contained in:
2
code/modules/mob/living/bot/bot_vr.dm
Normal file
2
code/modules/mob/living/bot/bot_vr.dm
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
/mob/living/bot
|
||||||
|
no_vore = TRUE
|
||||||
@@ -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?
|
||||||
|
|||||||
2
code/modules/mob/living/voice/voice_vr.dm
Normal file
2
code/modules/mob/living/voice/voice_vr.dm
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
/mob/living/voice
|
||||||
|
no_vore = TRUE
|
||||||
@@ -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"
|
||||||
|
|||||||
Reference in New Issue
Block a user