The owner is the authorized user in the solidity contracts. Usually, an owner can be updated with transferOwnership function. However, the process is only completed with single transaction. If the address is updated incorrectly, an owner functionality will be lost forever.
Navigate to the following contracts.
ForgottenRunesWarriorsMinter.sol#L15
ForgottenRunesWarriorsGuild.sol#L14
Lack of two-step procedure for critical operations leaves them error-prone. Consider adding two step procedure on the critical functions.
