1
0
Fork 0

Adding enchantments directly instead of first getting the name of it.

This commit is contained in:
STRWarrior 2014-10-15 15:31:06 +02:00
parent e4ee71868e
commit 57f8d2a55e
1 changed files with 1 additions and 1 deletions

View File

@ -647,7 +647,7 @@ void cItemGrid::GenerateRandomLootWithBooks(const cLootProbab * a_LootProbabs, s
for (int j = 0; j <= NumEnchantments; j++)
{
cEnchantments Enchantment = cEnchantments::GenerateEnchantmentFromVector(Enchantments, Noise.IntNoise2DInt(NumEnchantments, i));
CurrentLoot.m_Enchantments.AddFromString(Enchantment.ToString());
CurrentLoot.m_Enchantments.Add(Enchantment);
cEnchantments::RemoveEnchantmentWeightFromVector(Enchantments, Enchantment);
}