Guild PQ + fixed negative EXP error

Implemented Guild PQ. Fixed a problem introduced earlier where negative
EXP would be deemed as "integer overflow", provoking many game breaking
issues as result.
This commit is contained in:
ronancpl
2017-06-18 03:19:53 -03:00
parent 81f9226286
commit 42fe74955d
135 changed files with 822 additions and 564 deletions

View File

@@ -972,7 +972,7 @@ public class MapleClient {
}
public void setScriptEngine(String name, ScriptEngine e) {
engines.put(name, e);
engines.put(name, e);
}
public ScriptEngine getScriptEngine(String name) {
@@ -980,7 +980,7 @@ public class MapleClient {
}
public void removeScriptEngine(String name) {
engines.remove(name);
engines.remove(name);
}
public ScheduledFuture<?> getIdleTask() {