1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-07 12:54:00 +00:00

Merge branch 'scroll_fix' into 'master'

Fix recordDraft isScroll for types.book in lua

See merge request OpenMW/openmw!3456
This commit is contained in:
psi29a 2023-09-27 07:30:27 +00:00
commit 937f948b8a

View File

@ -60,7 +60,7 @@ namespace
if (rec["value"] != sol::nil)
book.mData.mValue = rec["value"];
if (rec["isScroll"] != sol::nil)
book.mData.mIsScroll = rec["isScroll"];
book.mData.mIsScroll = rec["isScroll"] ? 1 : 0;
if (rec["skill"] != sol::nil)
{