mirror of
https://github.com/OpenMW/openmw.git
synced 2025-04-05 13:06:44 +00:00
Merge branch 'fix_my_errors' into 'master'
Fix minor doc error, throw error when attempting to assign a value to a non-existing global variable in lua See merge request OpenMW/openmw!3548
This commit is contained in:
commit
eb0ddf72d8
2 changed files with 1 additions and 2 deletions
|
@ -140,7 +140,7 @@ namespace MWLua
|
||||||
= sol::overload([](const GlobalStore& store, std::string_view globalId, float val) {
|
= sol::overload([](const GlobalStore& store, std::string_view globalId, float val) {
|
||||||
auto g = store.search(ESM::RefId::deserializeText(globalId));
|
auto g = store.search(ESM::RefId::deserializeText(globalId));
|
||||||
if (g == nullptr)
|
if (g == nullptr)
|
||||||
return;
|
throw std::runtime_error("No variable \"" + std::string(globalId) + "\" in GlobalStore");
|
||||||
char varType = MWBase::Environment::get().getWorld()->getGlobalVariableType(globalId);
|
char varType = MWBase::Environment::get().getWorld()->getGlobalVariableType(globalId);
|
||||||
if (varType == 's' || varType == 'l')
|
if (varType == 's' || varType == 'l')
|
||||||
{
|
{
|
||||||
|
|
|
@ -930,7 +930,6 @@
|
||||||
-- Whether teleportation for this player is enabled.
|
-- Whether teleportation for this player is enabled.
|
||||||
-- @function [parent=#Player] isTeleportingEnabled
|
-- @function [parent=#Player] isTeleportingEnabled
|
||||||
-- @param openmw.core#GameObject player
|
-- @param openmw.core#GameObject player
|
||||||
-- @param #boolean player
|
|
||||||
-- @return #boolean
|
-- @return #boolean
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
Loading…
Reference in a new issue