diff --git a/Shared/Models/GameplayModifiers.cs b/Shared/Models/GameplayModifiers.cs index eacd5551..08ddae16 100644 --- a/Shared/Models/GameplayModifiers.cs +++ b/Shared/Models/GameplayModifiers.cs @@ -13,29 +13,29 @@ public enum GameOptions //Negative modifiers NoFail = 1, NoBombs = 2, - NoArrows = 2^2, - NoObstacles = 2^3, - SlowSong = 2^4, + NoArrows = 4, + NoObstacles = 8, + SlowSong = 16, //Positive Modifiers - InstaFail = 2^5, - FailOnClash = 2^6, - BatteryEnergy = 2^7, - FastNotes = 2^8, - FastSong = 2^9, - DisappearingArrows = 2^10, - GhostNotes = 2^11, + InstaFail = 32, + FailOnClash = 64, + BatteryEnergy = 128, + FastNotes = 256, + FastSong = 512, + DisappearingArrows = 1024, + GhostNotes = 2048, //1.12.2 Additions - DemoNoFail = 2^12, - DemoNoObstacles = 2^13, - StrictAngles = 2^14, + DemoNoFail = 4096, + DemoNoObstacles = 8192, + StrictAngles = 16384, //1.13.4 Additions - ProMode = 2^15, - ZenMode = 2^16, - SmallCubes = 2^17, - SuperFastSong = 2^18 + ProMode = 32768, + ZenMode = 65536, + SmallCubes = 131072, + SuperFastSong = 262144 } public GameOptions Options { get; set; } diff --git a/Shared/SharedConstructs.cs b/Shared/SharedConstructs.cs index 8bd396fe..96f0eb78 100644 --- a/Shared/SharedConstructs.cs +++ b/Shared/SharedConstructs.cs @@ -38,7 +38,8 @@ public static class SharedConstructs "0.4.0: Version bump to 1.13.2, merged websocket server, fixed quals leaderboard, re-mesh-networked for event scraping purposes\n" + "0.4.1: Fixed a few quals ui bugs, merged player settings page\n" + "0.4.2: Bump version number, stream sync fix, alpha bot-notification readded\n" + - "0.4.3: Version bump to 1.13.4"; + "0.4.3: Version bump to 1.13.4\n" + + "0.4.4: Fixed modifier bug"; public enum BeatmapDifficulty {