Skip to content

Commit

Permalink
Quark Ladders Is Now Disabled By Default
Browse files Browse the repository at this point in the history
Quark Ladders disabled by default due to Issues with unintended behavior.
A warning message was added to strawberry:config.

See Issue #16
  • Loading branch information
ChristianSilvermoon committed Apr 3, 2020
1 parent 961d16f commit ab8e476
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions data/strawberry/functions/config.mcfunction
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ execute if score sleepIndicator sp_var matches 0 run tellraw @s [{"text":"Sleep
execute if score skyWarp sp_var matches 1 run tellraw @s [{"text":"Sky Warping: ","clickEvent":{"action":"run_command","value":"/function strawberry:gamerule/sky_warp/false"},"hoverEvent":{"action":"show_text","value":"Click to Toggle\nWarp to the next dimension above Y2000 and Below Y-2 works for players, arrows, tridents, and items!"}}, {"text":"true","color":"green"}]
execute if score skyWarp sp_var matches 0 run tellraw @s [{"text":"Sky Warping: ","clickEvent":{"action":"run_command","value":"/function strawberry:gamerule/sky_warp/true"},"hoverEvent":{"action":"show_text","value":"Click to Toggle\nWarp to the next dimension above Y2000 and Below Y-2 works for players, arrows, tridents, and items!"}}, {"text":"false","color":"red"}]

execute if score quarkLadders sp_var matches 1 run tellraw @s [{"text":"Quark Ladders: ","clickEvent":{"action":"run_command","value":"/function strawberry:gamerule/quark_ladders/false"},"hoverEvent":{"action":"show_text","value":"Click to Toggle\nSlide down ladders faster while looking down\nJust like the Quark Mod!"}}, {"text":"true","color":"green"}]
execute if score quarkLadders sp_var matches 0 run tellraw @s [{"text":"Quark Ladders: ","clickEvent":{"action":"run_command","value":"/function strawberry:gamerule/quark_ladders/true"},"hoverEvent":{"action":"show_text","value":"Click to Toggle\nSlide down ladders faster while looking down\nJust like the Quark Mod!"}}, {"text":"false","color":"red"}]
execute if score quarkLadders sp_var matches 1 run tellraw @s [{"text":"Quark Ladders (Unstable): ","clickEvent":{"action":"run_command","value":"/function strawberry:gamerule/quark_ladders/false"},"hoverEvent":{"action":"show_text","value":"Click to Toggle\nSlide down ladders faster while looking down\nJust like the Quark Mod!\n\nThis feature has been known to cause unexpected problems.\nIncluding player death with unrecoverable items!\nUSE AT YOUR OWN RISK!"}}, {"text":"true","color":"green"}]
execute if score quarkLadders sp_var matches 0 run tellraw @s [{"text":"Quark Ladders (Unstable): ","clickEvent":{"action":"run_command","value":"/function strawberry:gamerule/quark_ladders/true"},"hoverEvent":{"action":"show_text","value":"Click to Toggle\nSlide down ladders faster while looking down\nJust like the Quark Mod!\n\nThis feature has been known to cause unexpected problems.\nIncluding player death with unrecoverable items!\nUSE AT YOUR OWN RISK!"}}, {"text":"false","color":"red"}]

execute if score shulkerMites sp_var matches 1 run tellraw @s [{"text":"Shulker Mites: ","clickEvent":{"action":"run_command","value":"/function strawberry:gamerule/shulker_mites/false"},"hoverEvent":{"action":"show_text","value":"Click to Toggle\nEndermites convert nearby Purpur into a Shulker when they despawn\nInspired by the Quark Mod!"}}, {"text":"true","color":"green"}]
execute if score shulkerMites sp_var matches 0 run tellraw @s [{"text":"Shulker Mites: ","clickEvent":{"action":"run_command","value":"/function strawberry:gamerule/shulker_mites/true"},"hoverEvent":{"action":"show_text","value":"Click to Toggle\nEndermites convert nearby Purpur into a Shulker when they despawn\nInspired by the Quark Mod!"}}, {"text":"false","color":"red"}]
Expand Down
2 changes: 1 addition & 1 deletion data/strawberry/functions/load.mcfunction
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ execute unless score crawling sp_var matches 0..1 run scoreboard players set cra
execute unless score killerBunny sp_var matches 0..1 run scoreboard players set killerBunny sp_var 1
execute unless score sleepIndicator sp_var matches 0..1 run scoreboard players set sleepIndicator sp_var 1
execute unless score skyWarp sp_var matches 0..1 run scoreboard players set skyWarp sp_var 1
execute unless score quarkLadders sp_var matches 0..1 run scoreboard players set quarkLadders sp_var 1
execute unless score quarkLadders sp_var matches 0..1 run scoreboard players set quarkLadders sp_var 0
execute unless score shulkerMites sp_var matches 0..1 run scoreboard players set shulkerMites sp_var 1

execute store result score seed sp_var run seed
Expand Down

0 comments on commit ab8e476

Please sign in to comment.