aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS_TheReturn/Commands.cs
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-02-16 17:14:18 -0500
committerMichael <[email protected]>2017-02-16 17:14:23 -0500
commite255c7fd47c2f6e2e12befdc8808e9db8cc8f0d2 (patch)
tree4cac94bffe9d322899ee047d86b8a3f2ef57f419 /ShiftOS_TheReturn/Commands.cs
parent781351aefb5d4fe7d9770568506345156b605b9a (diff)
downloadshiftos_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.cs16
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)