- Joined
- Aug 3, 2022
- Messages
- 717
- Reaction score
- 917
- First Language
- English
- Primarily Uses
- RMMZ
Good afternoon lovely people,
I have been hard at work building out my Equip Slots plugin and ran into a bit of a snag.
Currently my plugin refuses to address subclasses in place with Class Change System VisuStella MZ and I cannot get it to take into account notetags from anything beyond the primary class equipped by an actor.
This is the line currently in place that pulls the classSlots note tag:
Anyone have any ideas how I might also have that script check note tags in subclasses and add them to the classSlotIds array?
My plugin's thread if you want to take a peek there for reference
I am almost certain this is a super simple fix. I am just overlooking something
I have been hard at work building out my Equip Slots plugin and ran into a bit of a snag.
Currently my plugin refuses to address subclasses in place with Class Change System VisuStella MZ and I cannot get it to take into account notetags from anything beyond the primary class equipped by an actor.
This is the line currently in place that pulls the classSlots note tag:
const classSlotIds = this.currentClass().meta.classSlots ? this.currentClass().meta.classSlots.split(',').map(Number) : [ ];
Anyone have any ideas how I might also have that script check note tags in subclasses and add them to the classSlotIds array?
My plugin's thread if you want to take a peek there for reference
I am almost certain this is a super simple fix. I am just overlooking something