mirror of
https://github.com/TotalFreedomMC/TF-ProjectKorra.git
synced 2025-02-14 12:57:55 +00:00
Merge pull request #18 from jacklin213/patch-1
Fixed saveBendingPlayer() - See description
This commit is contained in:
commit
17a09a3d13
1 changed files with 1 additions and 1 deletions
|
@ -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() {
|
||||
|
|
Loading…
Reference in a new issue