We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62a54e4 commit c2c74efCopy full SHA for c2c74ef
src/main/java/tk/roccodev/beezig/forge/ActiveGame.java
@@ -5,10 +5,11 @@
5
6
public class ActiveGame {
7
8
- private static String current = "", last = "";
+ private static String current = "", last = "placeholder";
9
10
public static void set(String game) {
11
- if(!last.equals(game)) PointsTagCache.clear();
+ if(game.isEmpty())
12
+ PointsTagCache.clear();
13
last = current;
14
current = game;
15
EnderchestsListener.customSpawnPt = false;
0 commit comments