diff -r 73cdc306888f -r 128ace913837 hedgewars/uCommands.pas --- a/hedgewars/uCommands.pas Tue Dec 13 21:21:55 2022 +0100 +++ b/hedgewars/uCommands.pas Mon Jan 02 15:59:26 2023 +0100 @@ -30,7 +30,7 @@ procedure freeModule; procedure RegisterVariable(Name: shortstring; p: TCommandHandler; Trusted: boolean; Rand: boolean); procedure RegisterVariable(Name: shortstring; p: TCommandHandler; Trusted: boolean); -procedure ParseCommand(CmdStr: shortstring; TrustedSource: boolean); inline; +procedure ParseCommand(CmdStr: shortstring; TrustedSource: boolean); procedure ParseCommand(CmdStr: shortstring; TrustedSource, ExternalSource: boolean); procedure ParseTeamCommand(s: shortstring); procedure StopMessages(Message: Longword); @@ -76,7 +76,7 @@ end; -procedure ParseCommand(CmdStr: shortstring; TrustedSource: boolean); inline; +procedure ParseCommand(CmdStr: shortstring; TrustedSource: boolean); begin ParseCommand(CmdStr, TrustedSource, false) end;