From 3fca9119dd4fa5dabde64961a76422faf828cad0 Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Mon, 24 Jun 2013 16:37:43 +0200 Subject: [PATCH] Moved line to make refactoring easier. --- src/roguelike.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/roguelike.c b/src/roguelike.c index b38c01b..c823482 100644 --- a/src/roguelike.c +++ b/src/roguelike.c @@ -173,10 +173,10 @@ void move_player (struct World * world, char d) { void player_wait (struct World * world) { // Make player wait one turn. + update_log (world, "\nYou wait."); if (1 == world->interactive) record_action(0); - next_turn (world); - update_log (world, "\nYou wait."); } + next_turn (world); } void toggle_window (struct WinMeta * win_meta, struct Win * win) { // Toggle display of window win. -- 2.30.2