-
-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Player commands overloading bugs #392
Comments
The problem seems to be in each of the ICommandParameterType.Parse(...) implementations. SampSharp/src/SampSharp.GameMode/SAMP/Commands/ParameterTypes/IntegerType.cs Lines 42 to 58 in d294bc0
The commandText initially may contain a space at start (more on this later). Now, the first space may or may not be present, that depends on from where the call is arriving.
Changing all the ICommandParameterType implementations to do a trim on the commandText instead of a new variable will fix the issue. |
I created a two variants of same command:
A)
/admin skin [targetPlayerId] [skinId]
B)
/admin skin [skinId]
All parameters are int.
When the server loads in the console log I see both variants are loaded:
In game if I write
/admin skin
the server printsUsage: /admin skin [skinId]
If I write
/admin skin 33
it printsUsage: /admin skin [targetPlayer] [skinId]
If I write
/admin skin 1 33
then it works OK with the "A" variant.It is impossible to use the "B" variant.
The commands are declared as suggested here: https://sampsharp.net/player-commands#grouping-commands
I'm not using permissions nor overriding the default commands behavior.
I tried to swap the order of the command declaration, it swapped the order of the command in the server load log, but it was not changed the behavior.
The text was updated successfully, but these errors were encountered: