From 8a67b09203763dd4e641920cb9161e92e3319f41 Mon Sep 17 00:00:00 2001 From: Charles Dang Date: Fri, 17 Apr 2015 12:49:38 +1100 Subject: [PATCH] Use correct tag name in [store_rotate_map_location] errors --- src/game_events/action_wml.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/game_events/action_wml.cpp b/src/game_events/action_wml.cpp index 3d4505db3be7..043f53578e2d 100644 --- a/src/game_events/action_wml.cpp +++ b/src/game_events/action_wml.cpp @@ -1498,15 +1498,15 @@ WML_HANDLER_FUNCTION(store_relative_direction, /*event_info*/, cfg) WML_HANDLER_FUNCTION(store_rotate_map_location, /*event_info*/, cfg) { if (!cfg.child("source")) { - WRN_NG << "No source in [store_relative_dir]" << std::endl; + WRN_NG << "No source in [store_rotate_map_location]" << std::endl; return; } if (!cfg.child("destination")) { - WRN_NG << "No destination in [store_relative_dir]" << std::endl; + WRN_NG << "No destination in [store_rotate_map_location]" << std::endl; return; } if (!cfg.has_attribute("variable")) { - WRN_NG << "No variable in [store_relative_dir]" << std::endl; + WRN_NG << "No variable in [store_rotate_map_location]" << std::endl; return; }