Fix editing slope xydirection with Lua

This commit is contained in:
Monster Iestyn 2018-10-21 18:25:13 +01:00
parent 3ec8743c1b
commit 772004d3fd
1 changed files with 2 additions and 0 deletions

View File

@ -1374,6 +1374,8 @@ static int slope_set(lua_State *L)
}
case slope_xydirection: // xydirection
slope->xydirection = luaL_checkangle(L, 3);
slope->d.x = -FINECOSINE((slope->xydirection>>ANGLETOFINESHIFT) & FINEMASK);
slope->d.y = -FINESINE((slope->xydirection>>ANGLETOFINESHIFT) & FINEMASK);
P_CalculateSlopeNormal(slope);
break;
}