Skip to content
This repository was archived by the owner on Jun 19, 2021. It is now read-only.

Commit 2a26c55

Browse files
committed
Remove 2 game breaking recommendation
1 parent ab8a7a3 commit 2a26c55

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/main/java/org/yatopiamc/bot/timings/TimingsSuggestions.java

-4
Original file line numberDiff line numberDiff line change
@@ -232,10 +232,6 @@ public class TimingsSuggestions {
232232
configs -> configs.getAsJsonObject("purpur").getAsJsonObject("world-settings").entrySet().stream().anyMatch(entry -> entry.getValue().getAsJsonObject().getAsJsonObject("mobs").getAsJsonObject("villager").getAsJsonObject("spawn-iron-golem").get("radius").getAsInt() == 0)));
233233
suggestions.put("mobs.zombie.aggressive-towards-villager-when-lagging", new ConfigSuggestion("", "Disable this in [purpur.yml](http://bit.ly/purpurc).",
234234
configs -> configs.getAsJsonObject("purpur").getAsJsonObject("world-settings").entrySet().stream().anyMatch(entry -> entry.getValue().getAsJsonObject().getAsJsonObject("mobs").getAsJsonObject("zombie").get("aggressive-towards-villager-when-lagging").getAsBoolean())));
235-
suggestions.put("mobs.villager.lobotomize.enabled", new ConfigSuggestion("", "Enable this in [purpur.yml](http://bit.ly/purpurc).",
236-
configs -> configs.getAsJsonObject("purpur").getAsJsonObject("world-settings").entrySet().stream().anyMatch(entry -> !entry.getValue().getAsJsonObject().getAsJsonObject("mobs").getAsJsonObject("villager").getAsJsonObject("lobotomize").get("enabled").getAsBoolean())));
237-
suggestions.put("gameplay-mechanics.entities-can-use-portals", new ConfigSuggestion("", "Disable this in [purpur.yml](http://bit.ly/purpurc) to prevent players from creating chunk anchors.",
238-
configs -> configs.getAsJsonObject("purpur").getAsJsonObject("world-settings").entrySet().stream().anyMatch(entry -> entry.getValue().getAsJsonObject().getAsJsonObject("gameplay-mechanics").get("entities-can-use-portals").getAsBoolean())));
239235
suggestions.put("gameplay-mechanics.player.teleport-if-outside-border", new ConfigSuggestion("", "Enable this in [purpur.yml](http://bit.ly/purpurc).",
240236
configs -> configs.getAsJsonObject("purpur").getAsJsonObject("world-settings").entrySet().stream().anyMatch(entry -> !entry.getValue().getAsJsonObject().getAsJsonObject("gameplay-mechanics").getAsJsonObject("player").get("teleport-if-outside-border").getAsBoolean())));
241237
return suggestions;

0 commit comments

Comments
 (0)