mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-18 04:08:27 +00:00
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:
Regular → Executable
+1
-1
@@ -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]);
|
||||
|
||||
Reference in New Issue
Block a user