Skip to content

Commit

Permalink
vc12 to vc8
Browse files Browse the repository at this point in the history
  • Loading branch information
HerXayah committed Nov 9, 2022
1 parent 8bec6ff commit 4ceec8e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/main/java/meow/sarah/patootie/Sarah.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import com.google.gson.JsonObject;
import com.google.gson.JsonPrimitive;
import meow.sarah.patootie.events.PlayerEventHandler;
import meow.sarah.patootie.util.Utils;
import net.labymod.addon.AddonLoader;
import net.labymod.addons.voicechat.VoiceChat;
import net.labymod.api.LabyModAddon;
Expand Down Expand Up @@ -73,7 +74,7 @@ public void execute(User user, EntityPlayer entityPlayer, NetworkPlayerInfo netw
saveConfig();
} catch (Exception e) {
e.printStackTrace();
labyMod().displayMessageInChat("Error: " + e.getMessage());
Utils.sendMessage("Error: " + e.getMessage());
}
}

Expand Down Expand Up @@ -111,7 +112,7 @@ public void execute(User user, EntityPlayer entityPlayer, NetworkPlayerInfo netw
saveConfig();
} catch (Exception e) {
e.printStackTrace();
labyMod().displayMessageInChat("Error: " + e.getMessage());
Utils.sendMessage("Error: " + e.getMessage());
}
}

Expand Down

0 comments on commit 4ceec8e

Please sign in to comment.