mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-07-16 10:02:59 -07:00
post merge stuff
This commit is contained in:
parent
297e2def7f
commit
0a394b0356
1 changed files with 2 additions and 2 deletions
|
@ -413,13 +413,13 @@ oJson Hint::toJSON() {
|
|||
if (items.size() == 1) {
|
||||
log["item"] = StaticData::GetItemTable()[items[0]]
|
||||
.GetName()
|
||||
..GetForCurrentLanguage(MF_RAW)); // RANDOTODO change to CustomMessage;
|
||||
.GetForCurrentLanguage(MF_RAW); // RANDOTODO change to CustomMessage;
|
||||
} else if (items.size() > 1) {
|
||||
std::vector<std::string> itemStrings = {};
|
||||
for (size_t c = 0; c < items.size(); c++) {
|
||||
itemStrings.push_back(StaticData::GetItemTable()[items[c]]
|
||||
.GetName()
|
||||
..GetForCurrentLanguage(MF_RAW))); // RANDOTODO change to CustomMessage
|
||||
.GetForCurrentLanguage(MF_RAW)); // RANDOTODO change to CustomMessage
|
||||
}
|
||||
log["items"] = itemStrings;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue