Mud Designer:

- Currency Editor no longer adds duplicate currencies when saved.
 - Currency Editor now overwrites existing currencies.
 - Fixed Currency Editor looking for .xml filetypes instead of .currency filetypes. Saved Currencies now show up in the currency list

Mud Engine:
 - Removed IsSafe property from BaseObject as not all objects will need this property.
 - Added IsSafe property to Zone.cs
 - Added IsSafe property to Room.cs.
This commit is contained in:
Scionwest_cp 2010-01-03 14:39:15 -08:00
parent a8ea7eecb8
commit 49a6e31019
4 changed files with 24 additions and 17 deletions

View file

@ -79,14 +79,6 @@ namespace MudDesigner.MudEngine.GameObjects
set;
}
[Category("Environment Information")]
[DefaultValue(false)]
public bool IsSafe
{
get;
set;
}
private string _Filename = "";
private string _Name = "";
/// <summary>