diff --git a/src/map/pc.hpp b/src/map/pc.hpp index 6750de619d..b1dcde257f 100644 --- a/src/map/pc.hpp +++ b/src/map/pc.hpp @@ -446,7 +446,8 @@ public: bool barter_open; bool barter_extended_open; bool enchantgrade_open; // Whether the enchantgrade window is open or not - unsigned int block_action : 10; + // Bitmask of e_pcblock_action_flag values + uint16 block_action; bool refineui_open; t_itemid inventory_expansion_confirmation; uint16 inventory_expansion_amount; diff --git a/src/map/script_constants.hpp b/src/map/script_constants.hpp index d0be8d790e..6a111ebcfe 100644 --- a/src/map/script_constants.hpp +++ b/src/map/script_constants.hpp @@ -10625,8 +10625,9 @@ export_constant(PCBLOCK_SITSTAND); export_constant(PCBLOCK_COMMANDS); export_constant(PCBLOCK_NPCCLICK); - export_constant(PCBLOCK_NPC); export_constant(PCBLOCK_EMOTION); + export_constant(PCBLOCK_EQUIP); + export_constant(PCBLOCK_NPC); export_constant(PCBLOCK_ALL); /* convertpcinfo command */