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:
commit
937f948b8a
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user