aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/Applications/MUDControlCentre.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ShiftOS.WinForms/Applications/MUDControlCentre.cs')
-rw-r--r--ShiftOS.WinForms/Applications/MUDControlCentre.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/ShiftOS.WinForms/Applications/MUDControlCentre.cs b/ShiftOS.WinForms/Applications/MUDControlCentre.cs
index d4654c8..ee5336e 100644
--- a/ShiftOS.WinForms/Applications/MUDControlCentre.cs
+++ b/ShiftOS.WinForms/Applications/MUDControlCentre.cs
@@ -398,6 +398,8 @@ Current legions: {legionname}";
txtnewlegionshortname.Size = new Size((int)sf.Width, (int)sf.Height);
}
+ private Shop CurrentShop = null;
+
private void txtnewlegiontitle_TextChanged(object sender, EventArgs e)
{
var g = txtnewlegiontitle.CreateGraphics();
@@ -425,5 +427,15 @@ Current legions: {legionname}";
SaveSystem.SaveGame();
myLegionToolStripMenuItem_Click(sender, e);
}
+
+ private void txtnewlegiondescription_TextChanged(object sender, EventArgs e)
+ {
+ editingLegion.Description = txtnewlegiondescription.Text;
+ }
+
+ private void currentTaskToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ this.job_current.BringToFront();
+ }
}
}