Skip to content

Commit

Permalink
Make flagpoles slightly thicker
Browse files Browse the repository at this point in the history
  • Loading branch information
LoneWolfHT committed Oct 25, 2023
1 parent 8dc999e commit b0e1aa9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mods/ctf/ctf_modebase/flags/nodes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ minetest.register_node("ctf_modebase:flag", {
node_box = {
type = "fixed",
fixed = {
{0.250000,-0.500000,0.000000,0.312500,0.500000,0.062500}
{0.25,-0.5000,0.0000,0.3625,0.5000,0.1125}
}
},
groups = {immortal=1,is_flag=1,flag_bottom=1,not_in_creative_inventory=1},
Expand Down Expand Up @@ -77,8 +77,8 @@ for name, def in pairs(ctf_teams.team) do
node_box = {
type = "fixed",
fixed = {
{0.250000,-0.500000,0.000000,0.312500,0.500000,0.062500},
{-0.5,0,0.000000,0.250000,0.500000,0.062500}
{0.25,-0.5000,0.0000,0.3625,0.5000,0.1125},
{-0.5,0,0.0500,0.2500,0.5000,0.0625}
}
},
groups = {immortal=1,is_flag=1,flag_top=1,not_in_creative_inventory=1,[name]=1},
Expand Down Expand Up @@ -115,7 +115,7 @@ minetest.register_node("ctf_modebase:flag_captured_top",{
node_box = {
type = "fixed",
fixed = {
{0.250000,-0.500000,0.000000,0.312500,0.500000,0.062500}
{0.25,-0.5000,0.0000,0.3625,0.5000,0.1125}
}
},
groups = {immortal=1,is_flag=1,flag_top=1,not_in_creative_inventory=1},
Expand Down

0 comments on commit b0e1aa9

Please sign in to comment.