- fixed bad args check in WarpToCoords CCMD.

This commit is contained in:
Christoph Oelckers 2020-11-29 16:06:15 +01:00
parent 1b1449605f
commit ed8266df0b

View file

@ -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;