diff options
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/mmo.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/common/mmo.h b/src/common/mmo.h index 77d6c1dd6..842159d59 100644 --- a/src/common/mmo.h +++ b/src/common/mmo.h @@ -149,6 +149,13 @@ struct global_reg { char value[256]; // [zBuffer]
};
+//Holds array of global registries, used by the char server and converter.
+struct accreg {
+ int account_id, char_id;
+ int reg_num;
+ struct global_reg reg[MAX_REG_NUM];
+};
+
//For saving status changes across sessions. [Skotlex]
struct status_change_data {
unsigned short type; //SC_type
|