Skip to content

Commit

Permalink
Fixed a critical bug preventing cross-server teleporting from working
Browse files Browse the repository at this point in the history
  • Loading branch information
WiIIiam278 committed Apr 9, 2021
1 parent 8ad97b9 commit 87176da
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ public static Boolean getPlayerTeleporting(Player p) {

try {
conn = getConnection();
ps = conn.prepareStatement("SELECT * FROM " + HuskHomes.getSettings().getPlayerDataTable() + " WHERE `user_uuid`=?);");
ps = conn.prepareStatement("SELECT * FROM " + HuskHomes.getSettings().getPlayerDataTable() + " WHERE `user_uuid`=?;");
ps.setString(1, p.getUniqueId().toString());
rs = ps.executeQuery();
if (rs != null) {
Expand Down

0 comments on commit 87176da

Please sign in to comment.