mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-28 20:40:47 +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");
|
Printf("warptocoords cannot be used in multiplayer.\n");
|
||||||
return;
|
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");
|
Printf("warptocoords [x] [y] [z] [ang] (optional) [horiz] (optional): warps the player to the specified coordinates\n");
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue