mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-31 09:06:46 +00:00
Return blank string values for string entries that return back null
This commit is contained in:
@@ -153,7 +153,7 @@ public:
|
||||
entry.groupid = atoi(row[2]);
|
||||
entry._class = atoi(row[3]);
|
||||
entry.level = atoi(row[4]);
|
||||
entry.name = row[5];
|
||||
entry.name = row[5] ? row[5] : "";
|
||||
entry.isgroupleader = atoi(row[6]);
|
||||
entry.israidleader = atoi(row[7]);
|
||||
entry.islooter = atoi(row[8]);
|
||||
@@ -298,7 +298,7 @@ public:
|
||||
entry.groupid = atoi(row[2]);
|
||||
entry._class = atoi(row[3]);
|
||||
entry.level = atoi(row[4]);
|
||||
entry.name = row[5];
|
||||
entry.name = row[5] ? row[5] : "";
|
||||
entry.isgroupleader = atoi(row[6]);
|
||||
entry.israidleader = atoi(row[7]);
|
||||
entry.islooter = atoi(row[8]);
|
||||
@@ -331,7 +331,7 @@ public:
|
||||
entry.groupid = atoi(row[2]);
|
||||
entry._class = atoi(row[3]);
|
||||
entry.level = atoi(row[4]);
|
||||
entry.name = row[5];
|
||||
entry.name = row[5] ? row[5] : "";
|
||||
entry.isgroupleader = atoi(row[6]);
|
||||
entry.israidleader = atoi(row[7]);
|
||||
entry.islooter = atoi(row[8]);
|
||||
|
||||
Reference in New Issue
Block a user