mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-11 20:00:46 +00:00
NPE fix for offline users in UserData
git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1584 e251c2fe-e539-e718-e476-b85c1f46cddb
This commit is contained in:
parent
7b825cc8d5
commit
1751baeed6
1 changed files with 1 additions and 1 deletions
|
@ -324,7 +324,7 @@ public abstract class UserData extends PlayerExtension implements IConf
|
|||
private ItemStack[] _getSavedInventory()
|
||||
{
|
||||
int size = config.getInt("inventory.size", 0);
|
||||
if (getInventory() != null && (size < 1 || size > getInventory().getSize()))
|
||||
if (getInventory() == null || size < 1 || size > getInventory().getSize())
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue