1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-09-30 16:19:11 +02:00

Possible sign refactor?

This commit is contained in:
KHobbits
2012-01-04 18:34:37 +00:00
parent de0a419476
commit 897571db7d
5 changed files with 26 additions and 31 deletions

View File

@@ -1,5 +1,6 @@
package com.earth2me.essentials.user;
import com.earth2me.essentials.ChargeException;
import com.earth2me.essentials.Console;
import static com.earth2me.essentials.I18n._;
import com.earth2me.essentials.Teleport;
@@ -654,7 +655,7 @@ public class User extends UserBase implements IUser
}
@Override
public void giveItems(ItemStack itemStack, Boolean canSpew)
public void giveItems(ItemStack itemStack, Boolean canSpew) throws ChargeException
{
if (giveItemStack(itemStack, canSpew))
{
@@ -663,7 +664,7 @@ public class User extends UserBase implements IUser
}
@Override
public void giveItems(List<ItemStack> itemStacks, Boolean canSpew)
public void giveItems(List<ItemStack> itemStacks, Boolean canSpew) throws ChargeException
{
boolean spew = false;
for (ItemStack itemStack : itemStacks)
@@ -679,7 +680,7 @@ public class User extends UserBase implements IUser
}
}
private boolean giveItemStack(ItemStack itemStack, Boolean canSpew)
private boolean giveItemStack(ItemStack itemStack, Boolean canSpew) throws ChargeException
{
boolean spew = false;
@@ -710,6 +711,11 @@ public class User extends UserBase implements IUser
spew = true;
}
}
else {
if (!overfilled.isEmpty()) {
throw new ChargeException("Inventory full");
}
}
return spew;
}
}