From 5c1083b6a8c5b6320f18885e54f9952f68fceff9 Mon Sep 17 00:00:00 2001 From: Menche Date: Mon, 15 Aug 2016 19:31:57 -0700 Subject: [PATCH] let rats spawn --- src/content_mob.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/content_mob.cpp b/src/content_mob.cpp index 3c7c355..7e4b788 100644 --- a/src/content_mob.cpp +++ b/src/content_mob.cpp @@ -371,10 +371,10 @@ void content_mob_init() f->dropped_item = std::string("CraftItem2 ")+itos(CONTENT_CRAFTITEM_RAT)+" 1"; f->motion = MM_WANDER; f->moves_silently = true; - f->spawn_max_height = -10; + f->spawn_max_height = -5; f->spawn_group = 3; - f->spawn_naturally = false; - f->lifetime = one_month; + f->spawn_naturally = true; + f->lifetime = one_week; f->setCollisionBox(aabb3f(-BS/3.,0.0,-BS/3., BS/3.,BS/2.,BS/3.)); lists::add("creative",CONTENT_TOOLITEM_MOB_SPAWNER,1,i);