mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-27 07:51:36 +00:00
Unlocks: require parameter for IsDifficulty condition
This commit is contained in:
parent
b48924f539
commit
e67f7bf59d
1 changed files with 2 additions and 4 deletions
|
|
@ -2975,13 +2975,11 @@ static void readcondition(UINT16 set, UINT32 id, char *word2)
|
|||
}
|
||||
else if (fastcmp(params[0], "ISDIFFICULTY"))
|
||||
{
|
||||
//PARAMCHECK(1);
|
||||
PARAMCHECK(1);
|
||||
ty = UCRP_ISDIFFICULTY;
|
||||
re = KARTSPEED_NORMAL;
|
||||
if (params[1])
|
||||
{
|
||||
if (fastcmp(params[1], "NORMAL"))
|
||||
;
|
||||
re = KARTSPEED_NORMAL;
|
||||
else if (fastcmp(params[1], "HARD"))
|
||||
re = KARTSPEED_HARD;
|
||||
else if (fastcmp(params[1], "MASTER"))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue