Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/item.h')
-rw-r--r--src/core/item.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/item.h b/src/core/item.h
index 6388838..27e6028 100644
--- a/src/core/item.h
+++ b/src/core/item.h
@@ -24,9 +24,10 @@ public:
* Tradeable (reserved)
* Unique indicates a unique item
* Unrestricted can be sold everywhere (e.g. cargo)
+ * Mountable indicate the item can be mounted in a slot
* Mounted indicates the item is mounted in a slot
* */
- enum Flags {Tradeable = 1, Unique = 2, Unrestricted = 4, Mounted = 8};
+ enum Flags {Tradeable = 1, Unique = 2, Unrestricted = 4, Mountable = 8, Mounted = 16};
Item(const Info *info);