Hi, I want to start off by saying this plugin is one of the best ones I've used for Ren'Py thus far, and it's making my pnc visual novel so much easier/smoother to make, but I ran into a small issue when it came to implementing a drag/drop inventory system with combinable items into the game. I'm using the exact same code as the example game in the plugin's zip download and the drag and drop inventory example from this YouTube tutorial (lines 221+, linked here: inventoryexamples/inventory.rpy at main · VimislikArt/inventoryexamples · GitHub), and they work together perfectly until you collect one of the inventory items by interacting with one of the plugin buttons via $ inventory.append(item). After that, the game runs into the error "ScriptError: could not find label 'True'" on the pnc_loop's jump expression _return statement where I think it mistakes the combine_check's return True statement for a label that doesn't exist and crashes.
Any ideas on why it's doing this? o3o