The current implementation allows users to stake up to 11 Munchables, exceeding the intended maximum of 10. This could lead to an imbalance in the game protocol, potentially giving some users an unfair advantage by allowing them to earn more rewards than intended. 
https://github.com/code-423n4/2024-07-munchables/blob/94cf468aaabf526b7a8319f7eba34014ccebe7b9/src/managers/LandManager.sol#L140
The condition munchablesStaked[mainAccount].length > 10 only reverts when trying to stake the 12th Munchable. This means:
As a result, users can stake 11 Munchables instead of the intended maximum of 10.
Change the condition to use greater than or equal to (>=) instead of strictly greater than (>):
