From 01fe86ea15bfd1cdf25985efbb658d23457d4baa Mon Sep 17 00:00:00 2001 From: nwjgit <69014816+nwjgit@users.noreply.github.com> Date: Thu, 7 Nov 2024 07:17:55 -0600 Subject: [PATCH] Fix dungeoneering fail message (#6179) --- src/mahoji/commands/dg.ts | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/mahoji/commands/dg.ts b/src/mahoji/commands/dg.ts index 8546c125ad..fe2cac3ac2 100644 --- a/src/mahoji/commands/dg.ts +++ b/src/mahoji/commands/dg.ts @@ -68,16 +68,6 @@ async function startCommand(channelID: string, user: MUser, floor: string | unde return [true, 'your minion is busy.']; } - const max = calcMaxFloorUserCanDo(user); - if (max < floorToDo) { - return [ - true, - `this party is doing Floor ${floorToDo}, you can't do this floor because you need level ${determineDgLevelForFloor( - floorToDo - )} Dungeoneering.` - ]; - } - if (!hasRequiredLevels(user, floorToDo)) { return [ true,