From f364e737075188beb2c218135951885b2cf8f19e Mon Sep 17 00:00:00 2001 From: ANAND Date: Thu, 31 Oct 2019 12:32:41 +0530 Subject: [PATCH] Map maker: Fix barrier rotation and outer barrier placement issues (#485) --- mods/ctf/ctf_map/barrier.lua | 2 +- mods/ctf/ctf_map/map_maker.lua | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mods/ctf/ctf_map/barrier.lua b/mods/ctf/ctf_map/barrier.lua index e6e0602..9ffbeda 100644 --- a/mods/ctf/ctf_map/barrier.lua +++ b/mods/ctf/ctf_map/barrier.lua @@ -1,4 +1,4 @@ -local c_stone = minetest.get_content_id("ctf_map:ind_stone") +local c_stone = minetest.get_content_id("ctf_map:stone") local c_stone_red = minetest.get_content_id("ctf_map:ind_stone_red") local c_glass = minetest.get_content_id("ctf_map:ind_glass") local c_glass_red = minetest.get_content_id("ctf_map:ind_glass_red") diff --git a/mods/ctf/ctf_map/map_maker.lua b/mods/ctf/ctf_map/map_maker.lua index fba1dec..2692a45 100644 --- a/mods/ctf/ctf_map/map_maker.lua +++ b/mods/ctf/ctf_map/map_maker.lua @@ -222,7 +222,7 @@ local function show_gui(name) "label[0,2.8;2. Place Barriers]", "label[0.1,3.3;This may take a few minutes.]", "field[0.4,4.3;1,1;barrier_r;R;", config.barrier_r, "]", - "dropdown[1.15,4.05;1,1;config.barrier_rot;X=0,Z=0;", config.barrier_rot + 1, "]", + "dropdown[1.15,4.05;1,1;barrier_rot;X=0,Z=0;", config.barrier_rot + 1, "]", "button[2.3,4;2,1;place_barrier;Place Barriers]", "box[4.4,2.8;0.05,2.2;#111111BB]", @@ -306,7 +306,7 @@ minetest.register_on_player_receive_fields(function(player, formname, fields) end if fields.barrier_rot and fields.barrier_rot ~= "" then - config.barrier_rot = fields.config.barrier_rot == "X=0" and 0 or 1 + config.barrier_rot = fields.barrier_rot == "X=0" and 0 or 1 storage:set_int("config.barrier_rot", config.barrier_rot) end