Codechange: Use EnumBitSet for VehStates. (#13755)

Renamed from VehStatus because pluralising that is weird.
This commit is contained in:
2025-03-08 18:24:21 +00:00
committed by GitHub
parent 0b102db421
commit 91d22f7617
37 changed files with 199 additions and 206 deletions

View File

@@ -574,7 +574,7 @@ EffectVehicle *CreateEffectVehicle(int x, int y, int z, EffectVehicleType type)
v->z_pos = z;
v->tile = TileIndex{};
v->UpdateDeltaXY();
v->vehstatus = VS_UNCLICKABLE;
v->vehstatus = VehState::Unclickable;
_effect_procs[type].init_proc(v);