This commit is contained in:
Lucca Faria Ferri 2023-01-26 14:53:49 -08:00
parent 4c7b9e9351
commit 59f7c47c83
2 changed files with 3 additions and 5 deletions

View File

@ -45,17 +45,15 @@ namespace DiIiS_NA.GameServer.GSSystem.ItemsSystem
{
public class Item : Actor
{
public DBInventory DBInventory = null;
private static readonly Logger Logger = LogManager.CreateLogger(nameof(Item));
public DBInventory DBInventory = null;
public bool ItemHasChanges
{
get;
private set; //needed in Future, set this to true if Item affixes or item attributes have changed.
}
public override ActorType ActorType => ActorType.Item;
public Actor Owner { get; set; } // Only set when the _actor_ has the item in its inventory. /fasbat

View File

@ -46,7 +46,7 @@ namespace DiIiS_NA.GameServer.GSSystem.ItemsSystem
{
public static class ItemGenerator
{
public static readonly Logger Logger = LogManager.CreateLogger(nameof(ItemGenerator));
private static readonly Logger Logger = LogManager.CreateLogger(nameof(ItemGenerator));
public static readonly ConcurrentDictionary<int, ItemTable> Items = new();