Merge pull request #18 from jacklin213/patch-1

Fixed saveBendingPlayer() - See description
This commit is contained in:
MistPhizzle 2014-08-13 23:55:33 -04:00
commit 17a09a3d13

View file

@ -1711,7 +1711,7 @@ public class Methods {
DBConnection.sql.modifyQuery("UPDATE pk_players SET element = '" + elements + "' WHERE uuid = '" + uuid + "'");
boolean permaRemoved = bPlayer.permaRemoved;
DBConnection.sql.modifyQuery("UPDATE pk_players SET permaremoved = '" + (permaRemoved ? "true" : " false") +"' WHERE uuid = '" + uuid + "'");
DBConnection.sql.modifyQuery("UPDATE pk_players SET permaremoved = '" + (permaRemoved ? "true" : "false") +"' WHERE uuid = '" + uuid + "'");
}
public static void stopBending() {