cameroncondry / cbc-kitten-scientists

Add-on for the wonderful incremental browser game: http://kittensgame.com/web/
MIT License
114 stars 94 forks source link

Suggestion: faster kitten distribution #336

Open MarkusRamikin opened 2 years ago

MarkusRamikin commented 2 years ago

Since the player can adjust the game speed in the console, for example this way:

autoTick = setInterval(function(){
    game.tick()
}, 50)

this results in a lot of undistributed kittens. They arrive faster than KS can deal with, and by the time it's time to reset (when doing a lot of housing-oriented runs for paragon-farming) there are hundreds of idle kittens that could have been working.

Perhaps this could be solved by distributing multiple kittens at once instead of one at a time, the same way as KS can build multiple buildings at once or research multiple techs etc.