TypeError: Overriding function changes state mutability from "payable" to "nonpayable"

Error: Overriding function changes state mutability from "payable" to "nonpayable".
   --> contracts/HyperDragons.sol:206:5:
    |
206 |     function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
    |     ^ (Relevant source part starts here and spans across multiple lines).
Note: Overridden function is here:
   --> erc721a/contracts/ERC721A.sol:540:5:
    |
540 |     function transferFrom(
    |     ^ (Relevant source part starts here and spans across multiple lines).

This start to happened when I added OpenSea Enforcer Royalties

So what exactly is the question then?
The error message tells you that you need to declare your function payable.