From 8f634dc90ab7bb3bf312fd8fde5b26a287d1d614 Mon Sep 17 00:00:00 2001 From: BThallid Date: Sun, 1 May 2011 02:11:26 +0400 Subject: [PATCH] [11409] Fixed value typo in ITEM_FLAG_UNK30 define. Signed-off-by: VladimirMangos --- src/game/ItemPrototype.h | 2 +- src/shared/revision_nr.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game/ItemPrototype.h b/src/game/ItemPrototype.h index 229768b88..debdf9fb7 100644 --- a/src/game/ItemPrototype.h +++ b/src/game/ItemPrototype.h @@ -134,7 +134,7 @@ enum ItemPrototypeFlags ITEM_FLAG_BOA = 0x08000000, // bind on account (set in template for items that can binded in like way) ITEM_FLAG_ENCHANT_SCROLL = 0x10000000, // for enchant scrolls ITEM_FLAG_MILLABLE = 0x20000000, // item can have milling loot - ITEM_FLAG_UNK30 = 0x04000000, + ITEM_FLAG_UNK30 = 0x40000000, ITEM_FLAG_BOP_TRADEABLE = 0x80000000, // bound item that can be traded }; diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index e3ff4a437..a9305be49 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "11408" + #define REVISION_NR "11409" #endif // __REVISION_NR_H__