Skip to content

Commit

Permalink
Fix dungeoneering fail message (#6179)
Browse files Browse the repository at this point in the history
  • Loading branch information
nwjgit authored Nov 7, 2024
1 parent 3cda248 commit 01fe86e
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions src/mahoji/commands/dg.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 01fe86e

Please sign in to comment.