this is probably not the correct way to fix it, but it works if you edit "./js/plugins/KRD_MZ_NeighborMessage.js" lines 164 and 165 from:Anyone knows how to fix this? it happen on Riku chapter 2
const textPage = tagText ? JSON.parse("[" + tagText + "]") : null;
const zonePage = tagZone ? JSON.parse("[" + tagZone + "]") : null;
to:
const textPage = tagText ? [tagText] : null;
const zonePage = tagZone ? [tagZone] : null;