Max plot members, keep if modified, added block data to SetBlockQueue, rgar debug commands

This commit is contained in:
boy0001
2015-06-08 05:37:40 +10:00
parent a2480c0458
commit 79564eed08
16 changed files with 178 additions and 61 deletions

View File

@ -415,10 +415,13 @@ public class BukkitMain extends JavaPlugin implements Listener, IPlotMain {
@Override
public EconHandler getEconomyHandler() {
BukkitEconHandler econ = new BukkitEconHandler();
if (econ.init()) {
return econ;
try {
BukkitEconHandler econ = new BukkitEconHandler();
if (econ.init()) {
return econ;
}
}
catch (Throwable e) {};
return null;
}