소스 검색

Add a missing space

TfT_02 12 년 전
부모
커밋
18d3b30647
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/main/java/com/gmail/nossr50/datatypes/player/PlayerProfile.java

+ 1 - 1
src/main/java/com/gmail/nossr50/datatypes/player/PlayerProfile.java

@@ -297,7 +297,7 @@ public class PlayerProfile {
 
         if (hudValues == null) {
             SQLDatabaseManager.write("INSERT INTO " + tablePrefix + "huds (user_id, mobhealthbar) VALUES (" + userId + ",'" + mobHealthbarType.name() + "')");
-            mcMMO.p.getLogger().warning(playerName + "does not exist in the HUD table. Their HUDs will be reset.");
+            mcMMO.p.getLogger().warning(playerName + " does not exist in the HUD table. Their HUDs will be reset.");
         }
         else {
             hudType = HudType.valueOf(hudValues.get(0));