From 74e6168e0a35e9f71a571987e09998209e2cf6cb Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Sat, 20 Jul 2019 11:57:40 +0200 Subject: [PATCH] HDB: Added script patch for MAP29.LUA --- engines/hdb/lua-script.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/engines/hdb/lua-script.cpp b/engines/hdb/lua-script.cpp index 3f3ec232089..28ae8f513ba 100644 --- a/engines/hdb/lua-script.cpp +++ b/engines/hdb/lua-script.cpp @@ -65,6 +65,8 @@ struct ScriptPatch { {"MAP21.LUA", "mapstring = strsub( LASTMAP, 1, 5 )", "mapstring = string.sub( LASTMAP, 1, 5 )"}, // line 105 + {"MAP29.LUA", "Message( format( \"", "Message( string.format( \""}, // line 195 + {"MAP30.LUA", "if i1 > getn(tiles)", "if i1 > #tiles"}, // line 211 {"MAP30.LUA", "if i2 > getn(tiles)", "if i2 > #tiles"}, // line 212 {"MAP30.LUA", "if i3 > getn(tiles)", "if i3 > #tiles"}, // line 213