Don't offset every existing ModAPI enum entry

Signed-off-by: 90 <hi@90.gripe>
This commit is contained in:
90 2024-06-24 18:40:37 +01:00
parent 5e56b8cc30
commit a2932ef8a8
No known key found for this signature in database
GPG Key ID: 90152CD80EE8E519

View File

@ -57,11 +57,11 @@ class ModAPI {
enum ModLoaderType { enum ModLoaderType {
Unspecified = 0, Unspecified = 0,
Forge = 1 << 0, Forge = 1 << 0,
NeoForge = 1 << 1, Cauldron = 1 << 1,
Cauldron = 1 << 2, LiteLoader = 1 << 2,
LiteLoader = 1 << 3, Fabric = 1 << 3,
Fabric = 1 << 4, Quilt = 1 << 4,
Quilt = 1 << 5 NeoForge = 1 << 5
}; };
Q_DECLARE_FLAGS(ModLoaderTypes, ModLoaderType) Q_DECLARE_FLAGS(ModLoaderTypes, ModLoaderType)