Merge remote-tracking branch 'mckibbenta/tgm'

This commit is contained in:
Marc Zinnschlag 2013-09-12 19:07:35 +02:00
commit bf8a25c2c6
8 changed files with 31 additions and 4 deletions

View file

@ -258,6 +258,8 @@ namespace Compiler
extensions.registerInstruction ("enableteleporting", "", opcodeEnableTeleporting);
extensions.registerInstruction ("showvars", "", opcodeShowVars, opcodeShowVarsExplicit);
extensions.registerInstruction ("sv", "", opcodeShowVars, opcodeShowVarsExplicit);
extensions.registerInstruction("tgm", "", opcodeToggleGodMode);
extensions.registerInstruction("togglegodmode", "", opcodeToggleGodMode);
}
}

View file

@ -221,6 +221,7 @@ namespace Compiler
const int opcodeEnableTeleporting = 0x2000216;
const int opcodeShowVars = 0x200021d;
const int opcodeShowVarsExplicit = 0x200021e;
const int opcodeToggleGodMode = 0x200021f;
}
namespace Sky