Fixed some item errors on drop

This commit is contained in:
Vlyan
2021-09-11 18:06:09 +02:00
parent 38e871a370
commit 25cba0a838
2 changed files with 2 additions and 1 deletions

View File

@@ -1,6 +1,7 @@
# Changelog # Changelog
## 1.3.4 - ? ## 1.3.4 - ?
- Fixed some item errors on drop.
- Added FoV English Opportunities usage. - Added FoV English Opportunities usage.
- Compendiums : - Compendiums :
- Added missing Mantis "Storm Fleet Tide Seer" school techniques : "Storm Surge" and "Eye of the Storm". - Added missing Mantis "Storm Fleet Tide Seer" school techniques : "Storm Surge" and "Eye of the Storm".

View File

@@ -4,7 +4,7 @@ export class ItemL5r5e extends Item {
* @returns {Collection<BaseItem>} * @returns {Collection<BaseItem>}
*/ */
get items() { get items() {
return this.data.data.items || null; return this.data.data.items || new Map();
} }
/** /**