diff options
author | zaaarf <me@zaaarf.foo> | 2024-09-27 14:57:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-27 14:57:38 +0200 |
commit | 9a84e7af70f2528578b00879e568bca285563e9b (patch) | |
tree | fbb752ea8c4bba4448dddcb87e5541df89f684fc /src/openvic-simulation/history/ProvinceHistory.cpp | |
parent | 7e895eaea194e266b112cb507b0d643083f2ad4b (diff) | |
parent | 45ea5382921f71bd247f57210937c3d384d46cdf (diff) |
Merge pull request #207 from OpenVicProject/remove-culture
Added support for remove_culture custom instruction
Diffstat (limited to 'src/openvic-simulation/history/ProvinceHistory.cpp')
-rw-r--r-- | src/openvic-simulation/history/ProvinceHistory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/openvic-simulation/history/ProvinceHistory.cpp b/src/openvic-simulation/history/ProvinceHistory.cpp index ef8793b..60fcbe4 100644 --- a/src/openvic-simulation/history/ProvinceHistory.cpp +++ b/src/openvic-simulation/history/ProvinceHistory.cpp @@ -50,7 +50,7 @@ bool ProvinceHistoryMap::_load_history_entry( Logger::warning( "Attempted to ", add ? "add" : "remove", " core of country ", country.get_identifier(), " ", add ? "to" : "from", " province history of ", entry.get_province(), - " after previously ", add ? "adding" : "removing", " it" + " after previously ", add ? "removing" : "adding", " it" ); return true; } |