From 9071980638d338e6b16b8564284eb5f98f3d02c9 Mon Sep 17 00:00:00 2001 From: Tercioo Date: Sat, 3 Aug 2019 16:48:11 -0300 Subject: [PATCH] Better overall data warning for new users. The localized string for the overall data was been updated: STRING_TUTORIAL_OVERALL1 Need to be translated to all languages except english. --- core/control.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/control.lua b/core/control.lua index 99d7b1c7..76d61aa3 100644 --- a/core/control.lua +++ b/core/control.lua @@ -1705,7 +1705,7 @@ if (instancia.rows_showing == 0 and instancia:GetSegment() == -1) then -- -1 overall data if (not instancia:IsShowingOverallDataWarning()) then local tutorial = _detalhes:GetTutorialCVar ("OVERALLDATA_WARNING1") or 0 - if ((type (tutorial) == "number") and (tutorial < 6)) then + if ((type (tutorial) == "number") and (tutorial < 60)) then _detalhes:SetTutorialCVar ("OVERALLDATA_WARNING1", tutorial + 1) instancia:ShowOverallDataWarning (true) end