diff --git a/code/modules/ai/aI_holder_subtypes/simple_mob_ai.dm b/code/modules/ai/aI_holder_subtypes/simple_mob_ai.dm index 9b4fb3044f..45a3067a1b 100644 --- a/code/modules/ai/aI_holder_subtypes/simple_mob_ai.dm +++ b/code/modules/ai/aI_holder_subtypes/simple_mob_ai.dm @@ -17,6 +17,7 @@ retaliate = FALSE can_flee = TRUE violent_breakthrough = FALSE + base_wander_delay = 8 //vorestation edit, to make pets slow. // Won't wander away as quickly, ideal for event-spawned mobs like carp or drones. /datum/ai_holder/simple_mob/event diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/pets/cat.dm b/code/modules/mob/living/simple_mob/subtypes/animal/pets/cat.dm index 8205cd109f..3f6bba4846 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/pets/cat.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/pets/cat.dm @@ -98,6 +98,7 @@ icon_living = "cat" icon_dead = "cat_dead" icon_rest = "cat_rest" + makes_dirt = FALSE //VOREStation edit: no more dirt /mob/living/simple_mob/animal/passive/cat/kitten name = "kitten" diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/pets/dog.dm b/code/modules/mob/living/simple_mob/subtypes/animal/pets/dog.dm index fbfafc426a..cc29ee0c31 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/pets/dog.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/pets/dog.dm @@ -115,6 +115,7 @@ desc = "It's a corgi." var/turns_since_scan = 0 var/obj/movement_target + makes_dirt = FALSE //VOREStation edit: no more dirt /mob/living/simple_mob/animal/passive/dog/corgi/Ian/Life() ..() diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/pets/fox_vr.dm b/code/modules/mob/living/simple_mob/subtypes/animal/pets/fox_vr.dm index 4d69627df6..dd929a4d5f 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/pets/fox_vr.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/pets/fox_vr.dm @@ -196,6 +196,7 @@ var/mob/living/friend = null // Our best pal, who we'll follow. awoo. ai_holder_type = /datum/ai_holder/simple_mob/passive + makes_dirt = FALSE // No more dirt /mob/living/simple_mob/animal/fox_vr/Renault/init_vore() ..() diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/sif/fluffy_vr.dm b/code/modules/mob/living/simple_mob/subtypes/animal/sif/fluffy_vr.dm index e5d1c8f8e1..6102738f7c 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/sif/fluffy_vr.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/sif/fluffy_vr.dm @@ -16,6 +16,7 @@ see_in_dark = 5 mob_size = MOB_TINY + makes_dirt = FALSE // No more dirt response_help = "scritches" response_disarm = "bops" @@ -29,6 +30,7 @@ meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat say_list_type = /datum/say_list/fluffy_vr + ai_holder_type = /datum/ai_holder/simple_mob/passive /datum/say_list/fluffy_vr speak = list("Squee","Arf arf","Awoo","Squeak") diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/space/snake_vr.dm b/code/modules/mob/living/simple_mob/subtypes/animal/space/snake_vr.dm index 13e2982a0b..822667c5f1 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/space/snake_vr.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/space/snake_vr.dm @@ -32,6 +32,7 @@ desc = "This snake is particularly chubby and demands nothing but the finest of treats." ai_holder_type = /datum/ai_holder/simple_mob/passive + makes_dirt = FALSE var/turns_since_scan = 0 var/obj/movement_target