mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-16 22:18:20 +00:00
[Strings] Refactor Strings Usage (#2305)
* Initial commit checkpoint * More functions converted * Commify * More functions * Fin * Sort declarations * Split functions between files * Bots * Update strings.h * Split * Revert find replaces * Repository template * Money * Misc function * Update CMakeLists.txt * Saylink * Update strings.cpp * Swap Strings::Saylink for Saylink::Create since saylink is coupled to zone database * API casings
This commit is contained in:
@@ -29,7 +29,7 @@ void command_qglobal(Client *c, const Seperator *sep)
|
||||
c->Message(Chat::White, "Usage: #qglobal on - Enables target NPC's ability to view quest globals");
|
||||
c->Message(Chat::White, "Usage: #qglobal off - Disables target NPC's ability to view quest globals");
|
||||
c->Message(Chat::White, "Usage: #qglobal view - View target NPC's ability to view quest globals");
|
||||
return;
|
||||
return;
|
||||
}
|
||||
|
||||
if (is_off) {
|
||||
@@ -50,7 +50,7 @@ void command_qglobal(Client *c, const Seperator *sep)
|
||||
return;
|
||||
}
|
||||
|
||||
auto repop_link = EQ::SayLinkEngine::GenerateQuestSaylink(
|
||||
auto repop_link = Saylink::Create(
|
||||
"#repop",
|
||||
false,
|
||||
"repop"
|
||||
@@ -83,7 +83,7 @@ void command_qglobal(Client *c, const Seperator *sep)
|
||||
return;
|
||||
}
|
||||
|
||||
auto repop_link = EQ::SayLinkEngine::GenerateQuestSaylink(
|
||||
auto repop_link = Saylink::Create(
|
||||
"#repop",
|
||||
false,
|
||||
"repop"
|
||||
|
||||
Reference in New Issue
Block a user