Merge branch 'maint'

This commit is contained in:
Randy Heit 2013-10-09 22:33:58 -05:00
commit d76dbcaa9d
5 changed files with 30 additions and 4 deletions

View file

@ -627,7 +627,14 @@ void C_DoCommand (const char *cmd, int keynum)
}
else
{
new DStoredCommand (com, beg);
if (len == 4 && strnicmp(beg, "warp", 4) == 0)
{
StoredWarp = beg;
}
else
{
new DStoredCommand (com, beg);
}
}
}
else