Fix the LoadGFG function to no longer have the unused parameter.

Fixed the command that was passing the wrong second parameter.
This commit is contained in:
Noudess
2018-12-07 12:17:27 -05:00
parent 9bf23a131b
commit 58d0aef90d
3 changed files with 18 additions and 25 deletions
Regular → Executable
+1 -1
View File
@@ -1688,7 +1688,7 @@ void command_zheader(Client *c, const Seperator *sep)
c->Message(0, "Invalid Zone Name: %s", sep->argplus[1]);
else {
if (zone->LoadZoneCFG(sep->argplus[1], true))
if (zone->LoadZoneCFG(sep->argplus[1], 0))
c->Message(0, "Successfully loaded zone header for %s from database.", sep->argplus[1]);
else
c->Message(0, "Failed to load zone header %s from database", sep->argplus[1]);