Skip to content

Commit

Permalink
Fix type of Result variable in ScriptActivePlayerGetJets.
Browse files Browse the repository at this point in the history
  • Loading branch information
BranDougherty committed Sep 30, 2022
1 parent 0335e7f commit 660c3e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/scriptcore/ScriptPlayer.pas
Original file line number Diff line number Diff line change
Expand Up @@ -1747,7 +1747,7 @@ procedure ScriptActivePlayerSetMuted(Self: TScriptActivePlayer; const Result: Bo
Self.Muted := Result;
end;

procedure ScriptActivePlayerGetJets(Self: TScriptActivePlayer; var Result: Byte);
procedure ScriptActivePlayerGetJets(Self: TScriptActivePlayer; var Result: Integer);
begin
Result := Self.Jets;
end;
Expand Down

0 comments on commit 660c3e8

Please sign in to comment.