diff --git a/src/main/java/tomato/gui/security/ParsePanelGUI.java b/src/main/java/tomato/gui/security/ParsePanelGUI.java index be57403c..5630f399 100644 --- a/src/main/java/tomato/gui/security/ParsePanelGUI.java +++ b/src/main/java/tomato/gui/security/ParsePanelGUI.java @@ -725,6 +725,10 @@ public void update() { } private JPanel updatePointsPanel() { + if (pointsPanel == null) { + return null; + } + pointsPanel.removeAll(); // Parse the player diff --git a/src/main/java/tomato/realmshark/Sound.java b/src/main/java/tomato/realmshark/Sound.java index 8f94dda1..31bcd0d4 100644 --- a/src/main/java/tomato/realmshark/Sound.java +++ b/src/main/java/tomato/realmshark/Sound.java @@ -54,6 +54,7 @@ public Sound(String file) { redbag = new Sound("sound/redbag.wav"); goldbag = new Sound("sound/goldbag.wav"); eggbag = new Sound("sound/eggbag.wav"); + bluebag = new Sound("sound/bluebag.wav"); trade = new Sound("sound/trade.wav"); custom = new Sound("sound/custom.wav"); } diff --git a/src/main/resources/sound/bluebag.wav b/src/main/resources/sound/bluebag.wav new file mode 100644 index 00000000..e5ce9272 Binary files /dev/null and b/src/main/resources/sound/bluebag.wav differ