mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-23 20:58:21 +00:00
Update base repositories to use int as a base to avoid atoi overflow
This commit is contained in:
@@ -47,31 +47,31 @@ public:
|
||||
float x;
|
||||
float z;
|
||||
float heading;
|
||||
int8 gender;
|
||||
int16 race;
|
||||
int8 class;
|
||||
int gender;
|
||||
int race;
|
||||
int class;
|
||||
int level;
|
||||
int deity;
|
||||
int birthday;
|
||||
int last_login;
|
||||
int time_played;
|
||||
int8 level2;
|
||||
int8 anon;
|
||||
int8 gm;
|
||||
int level2;
|
||||
int anon;
|
||||
int gm;
|
||||
int face;
|
||||
int8 hair_color;
|
||||
int8 hair_style;
|
||||
int8 beard;
|
||||
int8 beard_color;
|
||||
int8 eye_color_1;
|
||||
int8 eye_color_2;
|
||||
int hair_color;
|
||||
int hair_style;
|
||||
int beard;
|
||||
int beard_color;
|
||||
int eye_color_1;
|
||||
int eye_color_2;
|
||||
int drakkin_heritage;
|
||||
int drakkin_tattoo;
|
||||
int drakkin_details;
|
||||
int8 ability_time_seconds;
|
||||
int8 ability_number;
|
||||
int8 ability_time_minutes;
|
||||
int8 ability_time_hours;
|
||||
int ability_time_seconds;
|
||||
int ability_number;
|
||||
int ability_time_minutes;
|
||||
int ability_time_hours;
|
||||
int exp;
|
||||
int aa_points_spent;
|
||||
int aa_exp;
|
||||
@@ -107,7 +107,7 @@ public:
|
||||
int career_tribute_points;
|
||||
int tribute_points;
|
||||
int tribute_active;
|
||||
int8 pvp_status;
|
||||
int pvp_status;
|
||||
int pvp_kills;
|
||||
int pvp_deaths;
|
||||
int pvp_current_points;
|
||||
@@ -118,18 +118,18 @@ public:
|
||||
int pvp2;
|
||||
int pvp_type;
|
||||
int show_helm;
|
||||
int8 group_auto_consent;
|
||||
int8 raid_auto_consent;
|
||||
int8 guild_auto_consent;
|
||||
int8 leadership_exp_on;
|
||||
int group_auto_consent;
|
||||
int raid_auto_consent;
|
||||
int guild_auto_consent;
|
||||
int leadership_exp_on;
|
||||
int RestTimer;
|
||||
int air_remaining;
|
||||
int autosplit_enabled;
|
||||
int8 lfp;
|
||||
int8 lfg;
|
||||
int lfp;
|
||||
int lfg;
|
||||
std::string mailkey;
|
||||
int8 xtargets;
|
||||
int8 firstlogon;
|
||||
int xtargets;
|
||||
int firstlogon;
|
||||
int e_aa_effects;
|
||||
int e_percent_to_aa;
|
||||
int e_expended_aa_spent;
|
||||
|
||||
Reference in New Issue
Block a user