Updated cursed weapon data.

This commit is contained in:
MobiusDevelopment
2020-01-26 23:45:05 +00:00
parent 72cc9f0298
commit 328ce253f2
3 changed files with 18 additions and 30 deletions

View File

@@ -326,8 +326,7 @@ public class CursedWeapon
public boolean checkDrop(Attackable attackable, PlayerInstance player)
{
if (Rnd.get(100000) < _dropRate)
if (Rnd.get(1000000) < _dropRate)
{
// Drop the item
dropIt(attackable, player);
@@ -339,7 +338,6 @@ public class CursedWeapon
return true;
}
return false;
}