diff options
| author | Michael <[email protected]> | 2017-02-16 17:14:18 -0500 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-02-16 17:14:23 -0500 |
| commit | e255c7fd47c2f6e2e12befdc8808e9db8cc8f0d2 (patch) | |
| tree | 4cac94bffe9d322899ee047d86b8a3f2ef57f419 /ShiftOS_TheReturn/Commands.cs | |
| parent | 781351aefb5d4fe7d9770568506345156b605b9a (diff) | |
| download | shiftos_thereturn-e255c7fd47c2f6e2e12befdc8808e9db8cc8f0d2.tar.gz shiftos_thereturn-e255c7fd47c2f6e2e12befdc8808e9db8cc8f0d2.tar.bz2 shiftos_thereturn-e255c7fd47c2f6e2e12befdc8808e9db8cc8f0d2.zip | |
stuff
Diffstat (limited to 'ShiftOS_TheReturn/Commands.cs')
| -rw-r--r-- | ShiftOS_TheReturn/Commands.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ShiftOS_TheReturn/Commands.cs b/ShiftOS_TheReturn/Commands.cs index dcc96f2..acbecce 100644 --- a/ShiftOS_TheReturn/Commands.cs +++ b/ShiftOS_TheReturn/Commands.cs @@ -230,9 +230,25 @@ namespace ShiftOS.Engine } #if DEVEL + internal class Rock : Exception + { + internal Rock() : base("Someone threw a motherfucking rock at the window, and the Terminal fucking shattered.") + { + + } + } + [Namespace("dev")] public static class ShiftOSDevCommands { + [Command("rock", description = "A little surprise for unstable builds...")] + public static bool ThrowAFuckingRock() + { + Infobox.Show("Fuck.", new Rock().Message); + return false; + } + + [Command("unbuy")] [RequiresArgument("upgrade")] public static bool UnbuyUpgrade(Dictionary<string, object> args) |
