Skip to content

Commit

Permalink
Revert 'Zone build permissions are now initialised to be same as leve…
Browse files Browse the repository at this point in the history
…l's build permissions'

Reverted until performance issues with massive zone blacklists are resolved
  • Loading branch information
UnknownShadow200 committed Jan 3, 2022
1 parent f20ae79 commit 6160cb4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion MCGalaxy/Commands/Moderation/ZoneCmds.cs
Expand Up @@ -71,7 +71,8 @@ public sealed class CmdZone : Command2 {
if (!LevelInfo.Check(p, data.Rank, p.level, "create zones in this level")) return;

Zone z = new Zone();
z.Access.CloneAccess(p.level.BuildAccess);
// TODO readd once performance issues with massive zone build blacklists are fixed
//z.Access.CloneAccess(p.level.BuildAccess);
z.Config.Name = args[offset];
if (!PermissionCmd.Do(p, args, offset + 1, false, z.Access, data, p.level)) return;

Expand Down

0 comments on commit 6160cb4

Please sign in to comment.