From 3b640ed1473031851ff3bc200d5c53bc3284714c Mon Sep 17 00:00:00 2001 From: Matthew Fioravante Date: Mon, 2 Sep 2019 23:41:24 -0400 Subject: [PATCH] Fix Inn text rendering "It will be 1 Gfor the night" -> "It will be 1G for the night" --- src/game_interpreter_map.cpp | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/game_interpreter_map.cpp b/src/game_interpreter_map.cpp index 99957786a70..a95b220b4ff 100644 --- a/src/game_interpreter_map.cpp +++ b/src/game_interpreter_map.cpp @@ -396,9 +396,8 @@ bool Game_Interpreter_Map::CommandShowInn(RPG::EventCommand const& com) { // cod } else { out << Data::terms.inn_a_greeting_1 - << " " << Game_Temp::inn_price - << " " << Data::terms.gold - << Data::terms.inn_a_greeting_2; + << " " << Game_Temp::inn_price << Data::terms.gold + << " " << Data::terms.inn_a_greeting_2; Game_Message::texts.push_back(out.str()); Game_Message::texts.push_back(Data::terms.inn_a_greeting_3); } @@ -423,9 +422,8 @@ bool Game_Interpreter_Map::CommandShowInn(RPG::EventCommand const& com) { // cod } else { out << Data::terms.inn_b_greeting_1 - << " " << Game_Temp::inn_price - << " " << Data::terms.gold - << Data::terms.inn_b_greeting_2; + << " " << Game_Temp::inn_price << Data::terms.gold + << " " << Data::terms.inn_b_greeting_2; Game_Message::texts.push_back(out.str()); Game_Message::texts.push_back(Data::terms.inn_b_greeting_3); }