From 0a2065e5802fdd82f77d21bad8120819b69133da Mon Sep 17 00:00:00 2001 From: MSWS Date: Wed, 30 Oct 2024 17:47:29 -0700 Subject: [PATCH] Open up creation --- src/CS2/Commands/Gang/CreateCommand.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/CS2/Commands/Gang/CreateCommand.cs b/src/CS2/Commands/Gang/CreateCommand.cs index 95b7e7a..5868394 100644 --- a/src/CS2/Commands/Gang/CreateCommand.cs +++ b/src/CS2/Commands/Gang/CreateCommand.cs @@ -37,11 +37,6 @@ public async Task Execute(PlayerWrapper? executor, return CommandResult.ERROR; } - if (!executor.HasFlags("@ego/dssilver")) { - info.ReplySync(locale.Get(MSG.COMMAND_GANG_RESTRICTED)); - return CommandResult.ERROR; - } - if (name.Length is < 1 or > 16) { info.ReplySync(locale.Get(MSG.COMMAND_GANG_CREATE_INVALID)); return CommandResult.ERROR;