From b7d8b4d3b09b89ba45907013b2c22b29448a9102 Mon Sep 17 00:00:00 2001 From: kaadmy Date: Thu, 17 Dec 2015 14:44:46 -0800 Subject: [PATCH] removed stuff added in last commit(too many problems) --- mods/ambiance/init.lua | 8 -------- 1 file changed, 8 deletions(-) diff --git a/mods/ambiance/init.lua b/mods/ambiance/init.lua index c630f12..6d35ff8 100644 --- a/mods/ambiance/init.lua +++ b/mods/ambiance/init.lua @@ -54,8 +54,6 @@ local ambiance_volume = tonumber(minetest.setting_get("ambiance_volume")) or 1.0 local soundspec = {} local lastsound = {} -local timer = 0 - local function ambient_node_near(sound, pos) local nodepos = minetest.find_node_near(pos, sound.dist, sound.nodename) if nodepos ~= nil and math.random(1, sound.chance) == 1 then @@ -66,12 +64,6 @@ local function ambient_node_near(sound, pos) local nodepos = minetest.find_nod end local function step(dtime) - timer = timer + dtime - - if timer < 1 then return end - - timer = 0 - local player_positions = {} for _, player in ipairs(minetest.get_connected_players()) do