aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/Applications/MUDControlCentre.cs
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-01-17 17:08:27 -0500
committerMichael <[email protected]>2017-01-17 17:08:33 -0500
commitb348a76db785c040d957f055ba9cc8569bf0c285 (patch)
tree376a1884c36eb7a0929d5c88078c94986defecbc /ShiftOS.WinForms/Applications/MUDControlCentre.cs
parenta93dd80d4e2f4c97284a1d7bc24b0240358bdd25 (diff)
downloadshiftos_thereturn-b348a76db785c040d957f055ba9cc8569bf0c285.tar.gz
shiftos_thereturn-b348a76db785c040d957f055ba9cc8569bf0c285.tar.bz2
shiftos_thereturn-b348a76db785c040d957f055ba9cc8569bf0c285.zip
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.
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();
+ }
}
}