diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | src/item.h | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -2,6 +2,7 @@ * data/equipment.xml: Removed obsolete file. * data/items.xml: Fixed equipment types. + * src/item.h: Fixed invalid item ID. 2007-10-19 Philipp Sehmisch <tmw@crushnet.org> @@ -35,7 +35,7 @@ class Item /** * Constructor. */ - Item(int id = -1, int quantity = 0); + Item(int id = 0, int quantity = 0); /** * Sets the item id, identifying the item type. |