[trunk] Renamed infinite to unlimited

Please change your permissions and config if you have used this.

New Command: /unlimited [item] <player>
Allows a player to enable unlimited placing for one item. Can be used on other players.
The permission essentials.unlimited.placing still enables it for all items.

git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1110 e251c2fe-e539-e718-e476-b85c1f46cddb
This commit is contained in:
snowleo 2011-04-03 20:39:39 +00:00
parent 51f0955c88
commit bc243cb7df

View file

@ -708,13 +708,15 @@ public class User extends PlayerExtension implements Comparable<User>
}
@SuppressWarnings("unchecked")
public void setUnlimited(ItemStack stack, boolean b) {
public void setUnlimited(ItemStack stack, boolean state) {
List<Integer> items = new ArrayList<Integer>();
if (data.containsKey("unlimited")) {
items = (List<Integer>)data.get("unlimited");
}
items.remove(stack.getTypeId());
if (b) {
if (items.contains(stack.getTypeId())) {
items.remove(Integer.valueOf(stack.getTypeId()));
}
if (state) {
items.add(stack.getTypeId());
}
data.put("unlimited", items);