Fixed quest 336 Kaldis Gold Dragon drop.

This commit is contained in:
MobiusDevelopment 2020-08-01 17:05:22 +00:00
parent 9540d3aea7
commit e08f9afad2
2 changed files with 2 additions and 2 deletions

View File

@ -356,7 +356,7 @@ public class Q336_CoinsOfMagic extends Quest
final int npcId = npc.getNpcId();
if ((npcId == HARIT_LIZARDMAN_MATRIARCH) || (npcId == HARIT_LIZARDMAN_SHAMAN))
{
if ((cond == 2) && (Rnd.get(100) < (10.0 * npc.getTemplate().getBaseHpConsumeRate())))
if ((cond == 2) && (Rnd.get(1000) < 63))
{
st.giveItems(KALDIS_COIN, 1);
st.set("cond", "3");

View File

@ -356,7 +356,7 @@ public class Q336_CoinsOfMagic extends Quest
final int npcId = npc.getNpcId();
if ((npcId == HARIT_LIZARDMAN_MATRIARCH) || (npcId == HARIT_LIZARDMAN_SHAMAN))
{
if ((cond == 2) && (Rnd.get(100) < (10.0 * npc.getTemplate().getBaseHpConsumeRate())))
if ((cond == 2) && (Rnd.get(1000) < 63))
{
st.giveItems(KALDIS_COIN, 1);
st.set("cond", "3");