Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
braindigitalis committed Aug 23, 2024
1 parent 7738b3e commit fe9908f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions include/sporks/stringops.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
************************************************************************************/

#pragma once
#include <cstdint>
#include <string>
#include <iomanip>
#include <locale>
Expand Down
1 change: 1 addition & 0 deletions modules/trivia/settings.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@

#include <string>
#include <vector>
#include <cstdint>

class guild_settings_t
{
Expand Down
2 changes: 1 addition & 1 deletion modules/trivia/state.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ void state_t::tick()
do_end_game(settings);
break;
default:
creator->GetBot()->core->log(dpp::ll_warning, fmt::format("Invalid state '{}', ending round.", gamestate));
creator->GetBot()->core->log(dpp::ll_warning, fmt::format("Invalid state '{}', ending round.", (uint32_t)gamestate));
gamestate = TRIV_END;
terminating = true;
break;
Expand Down

0 comments on commit fe9908f

Please sign in to comment.