summaryrefslogtreecommitdiff
path: root/src/q_shroom.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/q_shroom.cc')
-rw-r--r--src/q_shroom.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/q_shroom.cc b/src/q_shroom.cc
index 1b787038..8a819672 100644
--- a/src/q_shroom.cc
+++ b/src/q_shroom.cc
@@ -17,11 +17,11 @@
#include "tables.hpp"
#include "util.hpp"
#include "variable.hpp"
-#include "z-form.h"
#include "z-rand.hpp"
#include "z-term.h"
#include <cassert>
+#include <fmt/format.h>
#define cquest (quest[QUEST_SHROOM])
@@ -327,7 +327,7 @@ void quest_shroom_init_hook()
cquest.data[1] = rand_range(7, 14);
if (wizard)
{
- messages.add(format("Shrooms number %d", cquest.data[1]), TERM_BLUE);
+ messages.add(fmt::format("Shrooms number {}", cquest.data[1]), TERM_BLUE);
}
}