1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-11 09:42:54 +00:00

Inventory open implementation, Html updates, Pathing generator,

Signed-off-by: Rogiel <rogiel@rogiel.com>
This commit is contained in:
2011-05-19 23:42:45 -03:00
parent 1de8662be6
commit 9b4fe02ee4
49 changed files with 908 additions and 166 deletions

View File

@@ -73,7 +73,8 @@ public class CharacterInventory implements Iterable<Item> {
* the items to be added
*/
public void load(List<Item> items) {
items.addAll(items);
this.items.clear();
this.items.addAll(items);
}
/**