diff options
| author | Michael <[email protected]> | 2017-04-29 10:52:10 -0400 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-04-29 10:52:10 -0400 |
| commit | 9916fafefca35e11edffb91566a3eee3aa90cd95 (patch) | |
| tree | 6c5d7d1220b2abb8c34581734f225079094690fb /ShiftOS_TheReturn | |
| parent | fc815c48696e5f3193411ad5decfd1324f06572f (diff) | |
| download | shiftos_thereturn-9916fafefca35e11edffb91566a3eee3aa90cd95.tar.gz shiftos_thereturn-9916fafefca35e11edffb91566a3eee3aa90cd95.tar.bz2 shiftos_thereturn-9916fafefca35e11edffb91566a3eee3aa90cd95.zip | |
fix all beta 2.3 bugs
Diffstat (limited to 'ShiftOS_TheReturn')
| -rw-r--r-- | ShiftOS_TheReturn/Shiftorium.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ShiftOS_TheReturn/Shiftorium.cs b/ShiftOS_TheReturn/Shiftorium.cs index 2637f1b..ad60134 100644 --- a/ShiftOS_TheReturn/Shiftorium.cs +++ b/ShiftOS_TheReturn/Shiftorium.cs @@ -445,7 +445,11 @@ namespace ShiftOS.Engine { public ShiftoriumUpgradeAttribute(string name, long cost, string desc, string dependencies, string category) : base(name.ToLower().Replace(" ", "_")) { - + Name = name; + Description = desc; + Dependencies = dependencies; + Cost = cost; + Category = category; } public string Name { get; private set; } |
