1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-19 22:23:51 +00:00

minor changes

This commit is contained in:
mckibbenta 2013-08-25 19:20:14 -04:00
parent 06701467ab
commit 60fa69139e
2 changed files with 2 additions and 2 deletions

View file

@ -396,7 +396,6 @@ namespace MWBase
/// It only applies to the current form the NPC is in.
virtual void applyWerewolfAcrobatics(const MWWorld::Ptr& actor) = 0;
// Dummy Implementation
virtual bool toggleGodMode() = 0;
};
}

View file

@ -726,7 +726,8 @@ namespace MWScript
bool enabled = MWBase::Environment::get().getWorld()->toggleGodMode();
context.report (enabled ? "God Mode -> On" : "God Mode -> Off");
// context.report (enabled ? "God Mode -> On" : "God Mode -> Off");
context.report("Unimplemented");
}
};