From 882b9e56171ddb4037ddab009e509d5f23df3250 Mon Sep 17 00:00:00 2001 From: Torwent Date: Sat, 8 Feb 2025 09:10:18 +0100 Subject: [PATCH] fix: compatibility with latest SRL-T --- osr/rsclient.simba | 7 +------ tools/file2string.simba | 2 +- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/osr/rsclient.simba b/osr/rsclient.simba index 3cf06ca2..6964f1c9 100644 --- a/osr/rsclient.simba +++ b/osr/rsclient.simba @@ -34,6 +34,7 @@ begin Self.Mode := Self.DetectClientMode(True); if Self.Mode = ERSClientMode.UNKNOWN then Self.Mode := ERSClientMode.FIXED; // Fixed as default so we can login if needed + Self.ClientModeChanged(); end; function TRSOptions.HideRoofs(): Boolean; @@ -79,9 +80,3 @@ begin if Result then Self.CheckClientSettings(); end; - -procedure TRSClient.UpdateState(); -begin - Self.DetectClientMode(True); - Self.ClientModeChanged(); -end; diff --git a/tools/file2string.simba b/tools/file2string.simba index a860d151..284c86fc 100644 --- a/tools/file2string.simba +++ b/tools/file2string.simba @@ -11,7 +11,7 @@ The only caveat is that the file can't have double quotes. const PATH = SIMBA_DATA_DIR + 'wasp-launcher' + DirectorySeparator + 'async' + - DirectorySeparator + 'mover.simba'; + DirectorySeparator + 'server.simba'; var content, line: String; lines, result: TStringArray;