Esempio n. 1
0
 private static CombatLogEntry CreateItemDroppedLogEntry(string monsterName, IItem item)
 {
     return new CombatLogEntry()
         {
             Text =
                 string.Format("     {0} dropped {1}x {2}", monsterName, item.Quantity, item.GetLeveledName())
         };
 }