From 7fde04851d1ff4b2cac168310af4324c105e4f0a Mon Sep 17 00:00:00 2001 From: T00thpick1 Date: Fri, 17 May 2013 18:43:41 -0400 Subject: [PATCH] Typo --- .../java/com/gmail/nossr50/datatypes/player/PlayerProfile.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/gmail/nossr50/datatypes/player/PlayerProfile.java b/src/main/java/com/gmail/nossr50/datatypes/player/PlayerProfile.java index 305b941b5..f46a8b27d 100644 --- a/src/main/java/com/gmail/nossr50/datatypes/player/PlayerProfile.java +++ b/src/main/java/com/gmail/nossr50/datatypes/player/PlayerProfile.java @@ -325,7 +325,7 @@ public class PlayerProfile { "c.taming, c.mining, c.repair, c.woodcutting, c.unarmed, c.herbalism, c.excavation, c.archery, c.swords, c.axes, c.acrobatics, c.blast_mining, " + "h.hudtype, h.mobhealthbar " + "FROM " + tablePrefix + "users u " + - "JOIN " + tablePrefix + "skills s ON (u.id = e.user_id) " + + "JOIN " + tablePrefix + "skills s ON (u.id = s.user_id) " + "JOIN " + tablePrefix + "experience e ON (u.id = e.user_id) " + "JOIN " + tablePrefix + "cooldowns c ON (u.id = c.user_id) " + "JOIN " + tablePrefix + "huds h ON (u.id = h.user_id) " +