Fix UDMF FOF flags
There are currently no pipelines.
To run a merge request pipeline, the jobs in the CI/CD configuration file must be configured to run in merge request pipelines and you must have sufficient permissions in the source project.
This fixes the bugs that were introduced by rearranging the FOF flags for UDMF. In particular:
ffloor_t::flags
to ffloor_t::fofflags
and all the FF_
constants to FOF_
. Which is kind of annoying, but I didn't see any way around it. flags
and the old FF_
constants are still exposed to Lua, and if you use them, the game will do all the necessary conversion in the background. New scripts should use fofflags
and the FOF_
constants for regular flags, bustflags
and the FB_
constants for the bustable FOF flags, and busttype
and the BT_
constants for the bustable FOF type.To run a merge request pipeline, the jobs in the CI/CD configuration file must be configured to run in merge request pipelines and you must have sufficient permissions in the source project.