- updated xlat/eternity.txt

This commit is contained in:
Christoph Oelckers 2016-03-08 16:01:26 +01:00
parent 209b495e10
commit 6787dfeafb
1 changed files with 8 additions and 5 deletions

View File

@ -112,11 +112,11 @@ enum
342 = 0, Stairs_BuildUpDoomSync(0)
343 = 0, Stairs_BuildDownDoomSync(0)
// Two-way portals are not supported yet either
344 = 0, Unsupported() // "Portal_TwowayCeiling"
345 = 0, Unsupported() // "Portal_TwowayFloor"
346 = 0, Unsupported() // "Portal_TwowayAnchorLine"
347 = 0, Unsupported() // "Portal_TwowayAnchorLineFloor"
// Two-way portals are just the same as the simple types.
344 = 0, Sector_SetPortal(tag, 0, 1, 1, 0) // "Portal_AnchoredCeiling"
345 = 0, Sector_SetPortal(tag, 0, 0, 1, 0) // "Portal_AnchoredFloor"
346 = 0, Sector_SetPortal(tag, 0, 1, 0, 0) // "Portal_AnchorLine"
347 = 0, Sector_SetPortal(tag, 0, 0, 0, 0) // "Portal_AnchorLineFloor"
// More parameterized linedefs
348 = 0, Polyobj_StartLine(0)
@ -215,3 +215,6 @@ enum
428 = 0, Thing_Destroy(0)
429 = 0, Door_LockedRaise(0)
430 = 0, ACS_LockedExecute(0)
431 = 0, Floor_Donut(0)
432 = 0, Ceiling_CrushAndRaise(0)
433 = 0, Ceiling_CrushStop(0)