Skip to content

Commit

Permalink
fix: compatibility with latest wasplib
Browse files Browse the repository at this point in the history
  • Loading branch information
Torwent committed Feb 8, 2025
1 parent c0fc8e5 commit 053780c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
7 changes: 1 addition & 6 deletions osr/rsclient.simba
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -79,9 +80,3 @@ begin
if Result then
Self.CheckClientSettings();
end;

procedure TRSClient.UpdateState();
begin
Self.DetectClientMode(True);
Self.ClientModeChanged();
end;
2 changes: 1 addition & 1 deletion tools/file2string.simba
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 053780c

Please sign in to comment.