From b348a76db785c040d957f055ba9cc8569bf0c285 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 17 Jan 2017 17:08:27 -0500 Subject: Out-of-box experience work It's definitely not working right now. I wouldn't delete your save. I have to implement the tutorial before the OOBE will let you into the game. --- ShiftOS.WinForms/Applications/MUDControlCentre.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'ShiftOS.WinForms/Applications/MUDControlCentre.cs') 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(); + } } } -- cgit v1.2.3