Skip to content

Commit

Permalink
fix wrong green color (lime blocks are used instead)
Browse files Browse the repository at this point in the history
  • Loading branch information
L_glandieres authored and L_glandieres committed Jan 22, 2024
1 parent 0311205 commit bd77b26
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

execute if score #performance_mode options matches 0 as @e[tag=baseTeam] at @s run function scaffolding_rush:team/create_base/rise/hollow_summon
execute if score #performance_mode options matches 0 as @e[type=marker,tag=baseTeam] at @s run function scaffolding_rush:team/create_base/rise/hollow_summon
execute if score #performance_mode options matches 0 as @e[type=armor_stand,tag=hollow_base] at @s run teleport ~ ~1 ~
execute as @e[tag=baseTeam] at @s positioned ~-3 ~ ~-3 run effect give @e[type=!marker,tag=!hollow_base,dx=6,dy=3,dz=6,nbt={OnGround:1b}] minecraft:levitation 1 1 true
execute as @e[type=marker,tag=baseTeam] at @s positioned ~-3 ~ ~-3 run effect give @e[type=!marker,tag=!hollow_base,dx=6,dy=3,dz=6,nbt={OnGround:1b}] minecraft:levitation 1 1 true

schedule function scaffolding_rush:team/create_base/rise/rise_solid 1s
execute if score #performance_mode options matches 0 run schedule function scaffolding_rush:team/create_base/rise/hollow_kill 1.1s
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ fill ~-2 ~2 ~1 ~2 ~2 ~1 minecraft:air replace minecraft:light_gray_concrete

execute if entity @s[tag=blue_villager] run fill ~-2 ~-1 ~-2 ~2 ~2 ~2 minecraft:blue_concrete replace minecraft:light_gray_concrete
execute if entity @s[tag=red_villager] run fill ~-2 ~-1 ~-2 ~2 ~2 ~2 minecraft:red_concrete replace minecraft:light_gray_concrete
execute if entity @s[tag=green_villager] run fill ~-2 ~-1 ~-2 ~2 ~2 ~2 minecraft:green_concrete replace minecraft:light_gray_concrete
execute if entity @s[tag=green_villager] run fill ~-2 ~-1 ~-2 ~2 ~2 ~2 minecraft:lime_concrete replace minecraft:light_gray_concrete
execute if entity @s[tag=yellow_villager] run fill ~-2 ~-1 ~-2 ~2 ~2 ~2 minecraft:yellow_concrete replace minecraft:light_gray_concrete

Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ particle cloud ~ ~ ~ 2 2 2 0 100 force

execute if entity @s[tag=base.blue] run fill ~-2 ~-2 ~-2 ~2 ~1 ~2 minecraft:air replace minecraft:blue_concrete
execute if entity @s[tag=base.red] run fill ~-2 ~-2 ~-2 ~2 ~1 ~2 minecraft:air replace minecraft:red_concrete
execute if entity @s[tag=base.green] run fill ~-2 ~-2 ~-2 ~2 ~1 ~2 minecraft:air replace minecraft:green_concrete
execute if entity @s[tag=base.green] run fill ~-2 ~-2 ~-2 ~2 ~1 ~2 minecraft:air replace minecraft:lime_concrete
execute if entity @s[tag=base.yellow] run fill ~-2 ~-2 ~-2 ~2 ~1 ~2 minecraft:air replace minecraft:yellow_concrete

kill @s
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"values": [
"minecraft:red_concrete",
"minecraft:red_concrete_powder",
"minecraft:green_concrete",
"minecraft:green_concrete_powder",
"minecraft:lime_concrete",
"minecraft:lime_concrete_powder",
"minecraft:yellow_concrete",
"minecraft:yellow_concrete_powder",
"minecraft:gray_concrete",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"values": [
"minecraft:blue_concrete",
"minecraft:blue_concrete_powder",
"minecraft:green_concrete",
"minecraft:green_concrete_powder",
"minecraft:lime_concrete",
"minecraft:lime_concrete_powder",
"minecraft:yellow_concrete",
"minecraft:yellow_concrete_powder",
"minecraft:gray_concrete",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"minecraft:red_concrete_powder",
"minecraft:blue_concrete",
"minecraft:blue_concrete_powder",
"minecraft:green_concrete",
"minecraft:green_concrete_powder",
"minecraft:lime_concrete",
"minecraft:lime_concrete_powder",
"minecraft:gray_concrete",
"minecraft:gray_concrete_powder"
]
Expand Down

0 comments on commit bd77b26

Please sign in to comment.