mirror of
https://github.com/2006-Scape/Parabot-317-API-Minified.git
synced 2026-07-07 00:38:21 +00:00
Fixed issue where isLoggedIn was placed in Character, as it has to be in Client
This commit is contained in:
@@ -104,4 +104,13 @@ public class Game {
|
|||||||
return Loader.getClient().getSettings();
|
return Loader.getClient().getSettings();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determines if the entity is logged in
|
||||||
|
*
|
||||||
|
* @return <b>true</b> if entity is logged in
|
||||||
|
*/
|
||||||
|
public boolean isLoggedIn() {
|
||||||
|
return Loader.getClient().isLoggedIn();
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -144,15 +144,6 @@ public class Character implements Locatable {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Determines if the entity is logged in
|
|
||||||
*
|
|
||||||
* @return <b>true</b> if entity is logged in
|
|
||||||
*/
|
|
||||||
public boolean isLoggedIn() {
|
|
||||||
return accessor.isLoggedIn();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the accessor class
|
* Gets the accessor class
|
||||||
*
|
*
|
||||||
|
|||||||
Reference in New Issue
Block a user