mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 14:52:01 +00:00
- fixed bad args check in WarpToCoords CCMD.
This commit is contained in:
parent
1b1449605f
commit
ed8266df0b
1 changed files with 1 additions and 1 deletions
|
@ -336,7 +336,7 @@ CCMD(warptocoords)
|
|||
Printf("warptocoords cannot be used in multiplayer.\n");
|
||||
return;
|
||||
}
|
||||
if (argv.argc() <= 4)
|
||||
if (argv.argc() < 4)
|
||||
{
|
||||
Printf("warptocoords [x] [y] [z] [ang] (optional) [horiz] (optional): warps the player to the specified coordinates\n");
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue