fix: Acquired recipes are now a Set (#1596)

This commit is contained in:
Kamron Batman 2023-11-17 00:04:46 -08:00 committed by GitHub
parent 6f0c33bd10
commit a1dffd10ce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 23 deletions

View file

@ -323,7 +323,7 @@ namespace Server.SkillHandlers
chance = 100;
}
return chance > Utility.Random(100);
return chance >= 100 || chance > Utility.Random(100);
}
private static bool IsValidMobileType(Mobile m, int type) =>