L2 Gaia Guardian's loot table contains Mana Pearls twice
ItsTheKais opened this issue ยท 0 comments
Lines 323-326 in EntityDoppleganger:
if(Math.random() < 0.7)
entityDropItem(new ItemStack(ModItems.manaResource, 8 + rand.nextInt(6), 1), 1F);
if(Math.random() < 0.5)
entityDropItem(new ItemStack(ModItems.manaResource, 4 + rand.nextInt(3), 1), 1F);
Both lines have metadata 1 (Mana Pearl). Guessing the second one was supposed to be metadata 2 (Mana Diamond).