diff options
| author | carverh <[email protected]> | 2016-07-21 16:00:53 -0700 |
|---|---|---|
| committer | carverh <[email protected]> | 2016-07-21 16:00:53 -0700 |
| commit | 3730f2829e697312b0c912601e5d428829df7645 (patch) | |
| tree | 8ad8b6cf56cbea6623f7a2a69f16ff43e71fc7bf /source/WindowsFormsApplication1/FinalMission/EndGameHandler.cs | |
| parent | 05373252f6d97753593dbaa5a274e438e9fac1f5 (diff) | |
| download | shiftos-c--3730f2829e697312b0c912601e5d428829df7645.tar.gz shiftos-c--3730f2829e697312b0c912601e5d428829df7645.tar.bz2 shiftos-c--3730f2829e697312b0c912601e5d428829df7645.zip | |
Fixed Up and Added Features
Diffstat (limited to 'source/WindowsFormsApplication1/FinalMission/EndGameHandler.cs')
| -rw-r--r-- | source/WindowsFormsApplication1/FinalMission/EndGameHandler.cs | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/source/WindowsFormsApplication1/FinalMission/EndGameHandler.cs b/source/WindowsFormsApplication1/FinalMission/EndGameHandler.cs index aea2f82..7d1f12f 100644 --- a/source/WindowsFormsApplication1/FinalMission/EndGameHandler.cs +++ b/source/WindowsFormsApplication1/FinalMission/EndGameHandler.cs @@ -258,7 +258,7 @@ namespace ShiftOS.FinalMission mguide.ButtonText = "End DevX"; mguide.OnButtonClick = new Action(() => { - //code to run to start uninstall of ShiftOS. + StartGoodEnding(); }); objPrompt = "Firewall, check. Primary server, check. Secondary server, CHECK. Telemetry server, CHECK. Now it's time to disable DevX himself. After all, he IS just code."; break; @@ -271,5 +271,13 @@ namespace ShiftOS.FinalMission } } #endregion + + public static void StartGoodEnding() + { + var room = new FakeChatClient(); + room.OtherCharacters = new List<string>(); + room.OtherCharacters.Add("TheHiddenHacker"); + room.Messages.Add("TheHiddenHacker", "After All This Time..."); + } } }
\ No newline at end of file |
