doublee313 63 Posted June 19, 2022 We using the Cooking mod and notice items disappear on change stacks... Calling hook OnItemSplit resulted in a conflict between the following plugins: Cooking - Item.metal.fragmentsx500.313799 79 (Item), Loottable (Item.metal.fragmentsx500.31379980 (Item)) Is this yours or Cooking? Thanks! Quote
The_Kiiiing 596 Posted June 19, 2022 17 minutes ago, doublee313 said: We using the Cooking mod and notice items disappear on change stacks... Calling hook OnItemSplit resulted in a conflict between the following plugins: Cooking - Item.metal.fragmentsx500.313799 79 (Item), Loottable (Item.metal.fragmentsx500.31379980 (Item)) Is this yours or Cooking? Thanks! Looks like cooking also implements a custom stacking system. This error is esentially caused by oxide because as you can see both plugins are returning the same split item (500 metal frags in this case) and oxide doesn't know which one to chose although they are the same. To fix this error please ask the developer of cooking to implement a check if the Loottable plugin is installed on the server and if thats the case return null in all stack-related hooks. Just to make it clear this is not the fault of any of the two plugins, it's just that oxide is unable to handle two different hook return values even if they're basically the same Quote
doublee313 63 Posted June 20, 2022 Ok thanks. I will send this info over to the Cooking dev and see what we they can do. Thank you for the reply Quote