Calling hook CanDropActiveItem resulted in a conflict between the following plugins: NoWeaponDrop - False (Boolean), RestoreUponDeath (True (Boolean))
Conflict between two plugins RestoreUponDeath and NoWeaponDrop
Calling hook CanDropActiveItem resulted in a conflict between the following plugins: NoWeaponDrop - False (Boolean), RestoreUponDeath (True (Boolean))
Conflict between two plugins RestoreUponDeath and NoWeaponDrop
Set "Can drop active item on death": true in the RestoreUponDeath config. This will cause RestoreUponDeath to actually stop using the CanDropActiveItem hook, avoiding this conflict. If you want to control for whom the active weapon drops, you can control that in the NoWeaponDrop plugin since you are using that.
There is also an opportunity for RestoreUponDeath to improve which would avoid this conflict. If it is updated to return null instead of true when the player does not have the restore permission, that would safely allow NoWeaponDrop to dictate the outcome of this hook. However, this change is not strictly necessary given that you can resolve the conflict through config option changes.
Changed this config option and seems to be better, thank you for your help! :)