Forcefield: Remove deprecated update_map() call (#467)

This commit is contained in:
Lejo 2018-12-09 14:57:48 +00:00 committed by SmallJoker
parent bdd13beeff
commit aa82fa1d13
1 changed files with 2 additions and 9 deletions

View File

@ -42,7 +42,7 @@ end)
-- | | -- | |
-- \___/\___/ -- \___/\___/
local function update_forcefield(pos, meta, active, first) local function update_forcefield(pos, meta, active)
local shape = meta:get_int("shape") local shape = meta:get_int("shape")
local range = meta:get_int("range") local range = meta:get_int("range")
local vm = VoxelManip() local vm = VoxelManip()
@ -86,11 +86,6 @@ local function update_forcefield(pos, meta, active, first)
vm:set_data(data) vm:set_data(data)
vm:update_liquids() vm:update_liquids()
vm:write_to_map() vm:write_to_map()
-- update_map is very slow, but if we don't call it we'll
-- get phantom blocks on the client.
if not active or first then
vm:update_map()
end
end end
local function set_forcefield_formspec(meta) local function set_forcefield_formspec(meta)
@ -273,13 +268,11 @@ local function run(pos, node)
technic.swap_node(pos, "technic:forcefield_emitter_off") technic.swap_node(pos, "technic:forcefield_emitter_off")
end end
elseif eu_input >= power_requirement then elseif eu_input >= power_requirement then
local first = false
if node.name == "technic:forcefield_emitter_off" then if node.name == "technic:forcefield_emitter_off" then
first = true
technic.swap_node(pos, "technic:forcefield_emitter_on") technic.swap_node(pos, "technic:forcefield_emitter_on")
meta:set_string("infotext", S("%s Active"):format(machine_name)) meta:set_string("infotext", S("%s Active"):format(machine_name))
end end
update_forcefield(pos, meta, true, first) update_forcefield(pos, meta, true)
end end
end end