diff -r 8c5cf2228e9a -r 4c706feaf706 Server/ItemActionType.cs --- a/Server/ItemActionType.cs Sun Jul 31 12:03:52 2016 +0200 +++ b/Server/ItemActionType.cs Fri Aug 12 20:25:05 2016 +0200 @@ -10,11 +10,11 @@ /// /// Used to populate our action type combobox with friendly names /// - class ItemActionType + class ItemObjectType { public Type Type; - public ItemActionType(Type type) + public ItemObjectType(Type type) { this.Type = type; } @@ -23,7 +23,7 @@ { //Get friendly action name from action attribute. //That we then show up in our combobox - return SharpLib.Utils.Reflection.GetAttribute(Type).Name; + return SharpLib.Utils.Reflection.GetAttribute(Type).Name; } } }