mirror of
https://github.com/EQEmu/Server.git
synced 2026-09-04 14:36:37 +00:00
Change TaskInformation strings to std::string
This commit is contained in:
+3
-3
@@ -117,9 +117,9 @@ typedef enum { ActivitiesSequential = 0, ActivitiesStepped = 1 } SequenceType;
|
||||
|
||||
struct TaskInformation {
|
||||
int Duration;
|
||||
char *Title;
|
||||
char *Description;
|
||||
char *Reward;
|
||||
std::string Title; // max length 64
|
||||
std::string Description; // max length 4000
|
||||
std::string Reward;
|
||||
int RewardID;
|
||||
int CashReward; // Expressed in copper
|
||||
int XPReward;
|
||||
|
||||
Reference in New Issue
Block a user