Skip to content

Commit

Permalink
Fix reload log order (#3728)
Browse files Browse the repository at this point in the history
  • Loading branch information
ramon-bernardo authored Oct 13, 2021
1 parent 8b47d47 commit 9aeb1a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/signals.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,10 @@ void sighupHandler()
g_game.raids.startup();
std::cout << "Reloaded raids." << std::endl;

g_spells->reload();
g_monsters.reload();
std::cout << "Reloaded monsters." << std::endl;

g_monsters.reload();
g_spells->reload();
std::cout << "Reloaded spells." << std::endl;

g_talkActions->reload();
Expand Down

0 comments on commit 9aeb1a7

Please sign in to comment.