Skip to content

Commit

Permalink
- build 18946
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry committed Jan 9, 2020
1 parent 194e990 commit 673327e
Showing 5 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion runLr.sh
Original file line number Diff line number Diff line change
@@ -7,7 +7,8 @@ sleep 2
#java -jar ./strategy13379.jar 127.0.0.1 31002 &
#java -jar ./strategy17757.jar 127.0.0.1 31002 &
#java -jar ./strategy17789.jar 127.0.0.1 31002 &
java -jar ./strategy18943.jar 127.0.0.1 31002 &
#java -jar ./strategy18943.jar 127.0.0.1 31002 &
java -jar ./strategy18946.jar 127.0.0.1 31002 &
#java -jar ./strategy18520.jar 127.0.0.1 31002 &
#java -jar ./strategy18483.jar 127.0.0.1 31002 &
#java -jar ./strategy17346.jar 127.0.0.1 31002 &
3 changes: 2 additions & 1 deletion runOld.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/bin/bash
java -Dapple.awt.UIElement=true -jar ./strategy18943.jar $1 $2 $3
java -Dapple.awt.UIElement=true -jar ./strategy18946.jar $1 $2 $3
#java -Dapple.awt.UIElement=true -jar ./strategy18943.jar $1 $2 $3
#java -Dapple.awt.UIElement=true -jar ./strategy18520.jar $1 $2 $3
#java -Dapple.awt.UIElement=true -jar ./strategy18520.jar $1 $2 $3
#java -Dapple.awt.UIElement=true -jar ./strategy18483.jar $1 $2 $3
2 changes: 1 addition & 1 deletion src/main/kotlin/core/MyStrategy.kt
Original file line number Diff line number Diff line change
@@ -72,7 +72,7 @@ class MyStrategy : AbstractStrategy() {
val maxTimeMs = getMaxTimeMs()

powerSaveMode =
game.currentTick > game.properties.maxTickCount / 3 && accumTookMs / maxTimeMs > game.currentTick / game.properties.maxTickCount
game.currentTick > game.properties.maxTickCount / 3 && accumTookMs.toFloat() / maxTimeMs > game.currentTick.toFloat() / game.properties.maxTickCount

log { "jumpInfo=${me.jumpState.description()}" }
timeStart = System.currentTimeMillis()
Binary file modified strategy.jar
Binary file not shown.
Binary file added strategy18946.jar
Binary file not shown.

0 comments on commit 673327e

Please sign in to comment.