Using HikariCP + Pet issues + Dojo skills

As Suggested by Alex-0000, migrated from DBCP to HikariCP (uses less
external JARs and got a cleaner code overall). Fixed some issues
regarding pets, such as evolving or hatching from egg. Added dojo skills
and fixed energy bar. Added missing upgrade books on drop data.
This commit is contained in:
ronancpl
2017-08-25 21:20:19 -03:00
parent 99062b1bb3
commit 001125ccdb
106 changed files with 3719 additions and 1455 deletions

30
docs/mcpq/MCTracker.java Normal file
View File

@@ -0,0 +1,30 @@
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package server.partyquest.mcpq;
import org.slf4j.LoggerFactory;
/**
* Logs various errors and also keeps data on Carnival PQ runs.
* @author s4nta
*/
public class MCTracker {
static org.slf4j.Logger log = LoggerFactory.getLogger(MCTracker.class);
// TODO:
// Add field-specific info
// Add methods for calls from different files
// Maybe write own version of FilePrinter?
static final String PATH = "Reports/MCPQ.txt";
public static void log(String msg) {
System.out.println(msg);
log.debug(msg);
}
}