diff options
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) |
