fix: Acquired recipes are now a Set (#1596)
This commit is contained in:
parent
6f0c33bd10
commit
a1dffd10ce
2 changed files with 21 additions and 23 deletions
|
|
@ -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) =>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue