mobs spawns, time to live reduced to 5 mins for entities (from 15 mins)

master
rnd 2015-02-25 13:24:31 +01:00
parent 48ace6dcc2
commit 975bb047c6
5 changed files with 6 additions and 5 deletions

View File

@ -25,6 +25,7 @@ enable_rollback_recording = false
#rnd: to prevent server crash from mysterious error: https://github.com/minetest/minetest/issues/1270
ignore_world_load_errors = true
max_objects_per_block = 99
item_entity_ttl = 300
#disableclouds test, mostly based on lags conf
liquid_loop_max = 600

View File

@ -53,4 +53,4 @@ mobs:register_mob("mobs:lava_flan", {
step = 0.5,
blood_texture = "fire_basic_flame.png",
})
mobs:register_spawn("mobs:lava_flan", {"default:lava_source"}, 15, -1, 1000, 3, 0)
mobs:register_spawn("mobs:lava_flan", {"default:lava_source","default:lava_flowing"}, 15, -1, 3000, 3, 0)

View File

@ -52,8 +52,8 @@ mobs:register_mob("mobs:sand_monster", {
light_resistant = true,
armor = 150,
drawtype = "front",
water_damage = 3,
lava_damage = 1,
water_damage = 5,
lava_damage = 5,
light_damage = 0,
attack_type = "dogfight",
animation = {

View File

@ -49,7 +49,7 @@ mobs:register_mob("mobs:stone_monster", {
armor = 100,
drawtype = "front",
water_damage = 0,
lava_damage = 2,
lava_damage = 5,
light_damage = 0,
attack_type = "dogfight",
animation = {

View File

@ -565,7 +565,7 @@ minetest.register_craft({
minetest.register_node("mymod:spell_float", {
description = "float spell: reduce gravity to max(0.75-magic_skill/5000,0.25) for 5+min(magic_skill/1000,5) seconds",
description = "float spell: enable glitch climbing and reduce gravity to max(0.75-magic_skill/5000,0.25) for 5+min(magic_skill/1000,5) seconds",
wield_image = "gui_furnace_arrow_fg.png",
wield_scale = {x=0.8,y=2.5,z=1.3},
drawtype = "allfaces",