diff --git a/changelog.md b/changelog.md index c492adb17c2a..095f5cbafc0d 100644 --- a/changelog.md +++ b/changelog.md @@ -48,6 +48,8 @@ * Added stricter validation to ensure units cannot have negative hitpoints, except during specific attack-related events. * Added deprecation notices for several macros that had them missing before. + * [message] no longer scrolls to units through fog or shroud so it matches + 1.12's behavior. ## Version 1.14.1 ### Campaigns diff --git a/data/lua/wml/message.lua b/data/lua/wml/message.lua index 8e0b58861904..9db49e68082e 100644 --- a/data/lua/wml/message.lua +++ b/data/lua/wml/message.lua @@ -373,7 +373,7 @@ function wesnoth.wml_actions.message(cfg) else -- Check ~= false, because the default if omitted should be true if cfg.scroll ~= false then - wesnoth.scroll_to_tile(speaker.x, speaker.y, false, false, true) + wesnoth.scroll_to_tile(speaker.x, speaker.y, true, false, true) end wesnoth.highlight_hex(speaker.x, speaker.y)