Fun game, but it get out of hand so fast, I cant feed them fast enough. Good job!
Viewing post in What happens if you overbreed dragoons? jam comments
Not that I know how you coded this game, but I wonder if it's different based on how fast each computer processes the game. Because I'm familiar with godot, I'm assume for the time sensitive stuff you either used a timer node or you did it internally with a script. If you did it with the script, be sure to multiply by delta because delta is based off how fast the completes everything.
You can prob look into it on your own but basically if a really slow and a really fast computer uses *delta they should run the same way. But if you don't, then the really fast computer does the same operation many times over the same period a really slow computer does it, which can give way to different results.