mirror of
https://github.com/OpenMW/openmw.git
synced 2025-04-03 06:36:41 +00:00
Remove confusing addPlayerQuestBindings method
This commit is contained in:
parent
a6e2ceebb8
commit
539dc1ee43
1 changed files with 1 additions and 5 deletions
|
@ -41,7 +41,7 @@ namespace MWLua
|
||||||
throw std::runtime_error("The argument must be a player!");
|
throw std::runtime_error("The argument must be a player!");
|
||||||
}
|
}
|
||||||
|
|
||||||
void addPlayerQuestBindings(sol::table& player, const Context& context)
|
void addPlayerBindings(sol::table player, const Context& context)
|
||||||
{
|
{
|
||||||
MWBase::Journal* const journal = MWBase::Environment::get().getJournal();
|
MWBase::Journal* const journal = MWBase::Environment::get().getJournal();
|
||||||
|
|
||||||
|
@ -161,10 +161,7 @@ namespace MWLua
|
||||||
verifyPlayer(player);
|
verifyPlayer(player);
|
||||||
context.mLuaEvents->addMenuEvent({ std::move(eventName), LuaUtil::serialize(eventData) });
|
context.mLuaEvents->addMenuEvent({ std::move(eventName), LuaUtil::serialize(eventData) });
|
||||||
};
|
};
|
||||||
}
|
|
||||||
|
|
||||||
void addPlayerBindings(sol::table player, const Context& context)
|
|
||||||
{
|
|
||||||
player["getCrimeLevel"] = [](const Object& o) -> int {
|
player["getCrimeLevel"] = [](const Object& o) -> int {
|
||||||
const MWWorld::Class& cls = o.ptr().getClass();
|
const MWWorld::Class& cls = o.ptr().getClass();
|
||||||
return cls.getNpcStats(o.ptr()).getBounty();
|
return cls.getNpcStats(o.ptr()).getBounty();
|
||||||
|
@ -172,6 +169,5 @@ namespace MWLua
|
||||||
player["isCharGenFinished"] = [](const Object&) -> bool {
|
player["isCharGenFinished"] = [](const Object&) -> bool {
|
||||||
return MWBase::Environment::get().getWorld()->getGlobalFloat(MWWorld::Globals::sCharGenState) == -1;
|
return MWBase::Environment::get().getWorld()->getGlobalFloat(MWWorld::Globals::sCharGenState) == -1;
|
||||||
};
|
};
|
||||||
addPlayerQuestBindings(player, context);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue