Skip to content

Commit

Permalink
fix nobody default maxundo
Browse files Browse the repository at this point in the history
  • Loading branch information
UnknownShadow200 committed Jul 26, 2018
1 parent 0d873b7 commit 7df3e40
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MCGalaxy/Player/Group/Group.cs
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ public static void LoadAll() {
if (GuestRank == null)
Register(new Group(LevelPermission.Guest, 1, 120, "Guest", '7'));
if (NobodyRank == null)
Register(new Group(LevelPermission.Nobody, 65536, -1, "Nobody", '0'));
Register(new Group(LevelPermission.Nobody, 65536, int.MaxValue, "Nobody", '0'));

GroupList.Sort((a, b) => a.Permission.CompareTo(b.Permission));
DefaultRank = Find(ServerConfig.DefaultRankName);
Expand Down
Binary file modified Uploads/MCGalaxy_.dll
Binary file not shown.

0 comments on commit 7df3e40

Please sign in to comment.