Skip to content

Commit

Permalink
Fixed modifier bug
Browse files Browse the repository at this point in the history
  • Loading branch information
MatrikMoon committed Mar 12, 2021
1 parent f546c93 commit f7dae23
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 18 deletions.
34 changes: 17 additions & 17 deletions Shared/Models/GameplayModifiers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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; }
Expand Down
3 changes: 2 additions & 1 deletion Shared/SharedConstructs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down

0 comments on commit f7dae23

Please sign in to comment.