mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
Update ai_cmd.c
fix comment according to zturtleman's old post in the relevant PR
This commit is contained in:
parent
2a8731186d
commit
de0ebca4a5
1 changed files with 1 additions and 1 deletions
|
@ -208,7 +208,7 @@ float BotGetTime(bot_match_t *match) {
|
|||
//match it to find out if the time is in seconds or minutes
|
||||
if (trap_BotFindMatch(timestring, &timematch, MTCONTEXT_TIME)) {
|
||||
if (timematch.type == MSG_FOREVER) {
|
||||
t = FLT_MAX; // 3.402823466e+38 minutes
|
||||
t = FLT_MAX; // 3.402823466e+38 seconds
|
||||
}
|
||||
else if (timematch.type == MSG_FORAWHILE) {
|
||||
t = 10 * 60; // 10 minutes
|
||||
|
|
Loading…
Reference in a new issue