Fixed issue where isLoggedIn was placed in Character, as it has to be in Client

This commit is contained in:
JKetelaar
2015-02-09 17:12:18 +01:00
parent 929f2f0987
commit 5de8c660b9
2 changed files with 2 additions and 2 deletions
@@ -15,7 +15,5 @@ public interface Character {
public int getMaxHealth();
public int getInteractingEntity();
public boolean isLoggedIn();
}
+2
View File
@@ -50,4 +50,6 @@ public interface Client {
public int[] getCurrentStats();
public int[] getSettings();
public boolean isLoggedIn();
}