Added standard teleports to line prediction

- Added standard teleports to line prediction
- Menudef for line special prediction
This commit is contained in:
Edward Richardson 2014-08-26 22:29:39 +12:00
commit 9e68983b44
3 changed files with 20 additions and 11 deletions

View file

@ -422,7 +422,8 @@ bool P_PredictLine(line_t *line, AActor *mo, int side, int activationType)
BYTE special;
// Only predict a very specifc section of specials
if (line->special != Teleport_Line)
if (line->special != Teleport_Line &&
line->special != Teleport)
{
return false;
}