1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-16 12:02:47 +00:00

License files

Signed-off-by: Rogiel <rogiel@rogiel.com>
This commit is contained in:
2011-05-16 18:42:10 -03:00
parent df36f9bb32
commit 5e21f16735
13 changed files with 1403 additions and 21 deletions

View File

@@ -76,7 +76,7 @@ public class Item extends AbstractObject implements Playable, Spawnable,
/**
* Count of items
*/
private int count = 1;
private long count = 1;
public Item(ItemTemplateID templateID) {
this.templateID = templateID;
@@ -112,7 +112,7 @@ public class Item extends AbstractObject implements Playable, Spawnable,
/**
* @return the count
*/
public int getCount() {
public long getCount() {
return count;
}
@@ -120,7 +120,7 @@ public class Item extends AbstractObject implements Playable, Spawnable,
* @param count
* the count to set
*/
public void setCount(int count) {
public void setCount(long count) {
this.count = count;
}