1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-20 03:35:51 +00:00
This commit is contained in:
Daniel Walsh 2019-11-16 22:06:26 +00:00 committed by GitHub
parent 0a08690ae9
commit 1569f7e05e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -123,7 +123,7 @@ public class Talisman extends SlimefunItem {
} }
Talisman talisman = (Talisman) item; Talisman talisman = (Talisman) item;
if (ThreadLocalRandom.current().nextInt(100) < talisman.getChance()) { if (ThreadLocalRandom.current().nextInt(100) > talisman.getChance()) {
return false; return false;
} }