fix(bufferservice): Fixed exception when trying to heal while on cooldown
Config value was a Long but the annotated Seconds2MillisecondsConverter generates an Integer, which would cause a casting exception.
The config value is unboxed with longValue() in the datapack so it's safe to keep it as an Integer.