diff options
| author | Michael <[email protected]> | 2017-02-13 16:50:13 -0500 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-02-13 16:50:21 -0500 |
| commit | 9533b7b98f87381632aabf914384d92832343a20 (patch) | |
| tree | e1e6f6ed6829213e8adcf8c35c14b7dc9f0899da /ShiftOS.WinForms/Applications/MUDControlCentre.cs | |
| parent | 09aaca5d88e3108dcf63748f1128a880d30b844e (diff) | |
| download | shiftos_thereturn-9533b7b98f87381632aabf914384d92832343a20.tar.gz shiftos_thereturn-9533b7b98f87381632aabf914384d92832343a20.tar.bz2 shiftos_thereturn-9533b7b98f87381632aabf914384d92832343a20.zip | |
Fuckton of client-side fixes
Diffstat (limited to 'ShiftOS.WinForms/Applications/MUDControlCentre.cs')
| -rw-r--r-- | ShiftOS.WinForms/Applications/MUDControlCentre.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ShiftOS.WinForms/Applications/MUDControlCentre.cs b/ShiftOS.WinForms/Applications/MUDControlCentre.cs index f2d5e77..c8289ab 100644 --- a/ShiftOS.WinForms/Applications/MUDControlCentre.cs +++ b/ShiftOS.WinForms/Applications/MUDControlCentre.cs @@ -182,6 +182,9 @@ namespace ShiftOS.WinForms.Applications flshoplist.Controls.Clear(); + lblistname.Text = "Chat"; + lblistdesc.Text = "Want to talk with other Shifters on the multi-user domain? Simply select a chatroom below and click 'Join' to join in!"; + foreach (var shop in channels) { var bnr = new Panel(); @@ -214,7 +217,7 @@ namespace ShiftOS.WinForms.Applications flButtons.Show(); var btn = new Button(); - btn.Text = "Browse"; + btn.Text = "Join"; btn.Click += (o, a) => { OpenChat(shop.ID); @@ -273,6 +276,8 @@ namespace ShiftOS.WinForms.Applications shop_all.BringToFront(); flshoplist.Controls.Clear(); + lblistname.Text = "Shops"; + lblistdesc.Text = "The multi-user domain is full of various shops ran by other users. They can contain anything from skins to applications to full system modifications. Just select a shop below to browse its contents!"; foreach (var shop in shops) { |
