Skip to content

Commit

Permalink
oh yeah this
Browse files Browse the repository at this point in the history
  • Loading branch information
Spigey committed May 11, 2024
1 parent e766510 commit f11b5d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/spigey/asteroide/modules/ChatBot.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public ChatBot() {
super(AsteroideAddon.CATEGORY, "chat-bot", "Automatically answers to other people using commands");
}
int meth(String equation) {
return (int) util.eval(equation); // I was too lazy to actually change the method everywhere
return (int) util.meth(equation); // I was too lazy to actually change the method everywhere
}
@EventHandler(priority = EventPriority.HIGHEST + 1)
private void PacketReceive(PacketEvent.Receive event) {
Expand Down

0 comments on commit f11b5d1

Please sign in to comment.