aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/bot.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bot.cpp b/src/bot.cpp
index 43a76f4..42fa4b6 100644
--- a/src/bot.cpp
+++ b/src/bot.cpp
@@ -311,7 +311,7 @@ uint16_t GetBestMove(Game *b, int maxDepth, move_options options) {
int increment = b->turn ? options.wncr : options.bncr;
double time_remaning = b->turn ? options.wtime : options.btime;
- timeToThingMS = ((time_remaning / 20) + (increment * 0.8));
+ timeToThingMS = ((time_remaning / 15) + (increment * 0.8));
}
bool continueSearching = true;