mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-12 09:42:21 +00:00
Objective text ACS: return false
I think these are only supposed to return true if they suspend thread execution, but I'm not sure.
This commit is contained in:
parent
7b2c5276c6
commit
b903da899e
1 changed files with 5 additions and 5 deletions
|
|
@ -4005,7 +4005,7 @@ bool CallFunc_AddMessage(ACSVM::Thread *thread, const ACSVM::Word *argV, ACSVM::
|
|||
|
||||
K_AddMessage(map->getString(argV[0])->str, argV[1], argV[2]);
|
||||
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
bool CallFunc_AddMessageForPlayer(ACSVM::Thread *thread, const ACSVM::Word *argV, ACSVM::Word argC)
|
||||
|
|
@ -4021,14 +4021,14 @@ bool CallFunc_AddMessageForPlayer(ACSVM::Thread *thread, const ACSVM::Word *argV
|
|||
K_AddMessageForPlayer(info->mo->player, map->getString(argV[0])->str, argV[1], argV[2]);
|
||||
}
|
||||
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
bool CallFunc_ClearPersistentMessages(ACSVM::Thread *thread, const ACSVM::Word *argV, ACSVM::Word argC)
|
||||
{
|
||||
K_ClearPersistentMessages();
|
||||
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
bool CallFunc_ClearPersistentMessageForPlayer(ACSVM::Thread *thread, const ACSVM::Word *argV, ACSVM::Word argC)
|
||||
|
|
@ -4042,5 +4042,5 @@ bool CallFunc_ClearPersistentMessageForPlayer(ACSVM::Thread *thread, const ACSVM
|
|||
K_ClearPersistentMessageForPlayer(info->mo->player);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue