asvitkine
asvitkine
If you are submitting a **bug**, please include the following: - [x] summary of problem "Encoding error! Spotless uses UTF-8 by default. " does not give filename of the affected...
Prereleases numbering has been reset? Seems new prereleases have low numbers like: https://github.com/triplea-game/triplea/releases/tag/2.6.6 There's two problems with this: 1. They don't actually show up as the latest in the list,...
1. Go to the prelease page: https://github.com/triplea-game/triplea/releases/tag/2.6%2Bf5f934c 2. Check the filenames of the individual files. They contain "unspecified" in the filename instead of the version number.
I profiled TripleA start up and I noticed that the main thing responsible for a slow startup and taking a while to show the initial game screen is GameNotesMigrator.extractGameNotes(). It...
When running on the bots, sometimes AiGameTest > testAiGame sometimes hits "Not in a step, but trying to add event". Example: https://github.com/triplea-game/triplea/runs/6910149568?check_suite_focus=true ``` java.lang.IllegalStateException: Not in a step, but trying...
I modified the test to do 1000 iterations. One of them hit this: ``` java.lang.IllegalStateException: Not all units present in:Center. Trying to remove:[infantry owned by Germans, armour owned by Germans]...
Possible 2.6 bug in buildAaCombatValue(). The code is as follows: ```java return side == BattleState.Side.DEFENSE ? AaDefenseCombatValue.builder() .strengthSupportFromFriends( supportFromFriends.filter(UnitSupportAttachment::getAaStrength)) .strengthSupportFromEnemies( supportFromEnemies.filter(UnitSupportAttachment::getAaStrength)) .rollSupportFromFriends(supportFromFriends.filter(UnitSupportAttachment::getAaRoll)) .rollSupportFromEnemies(supportFromEnemies.filter(UnitSupportAttachment::getAaRoll)) .friendUnits(friendlyUnits) .enemyUnits(enemyUnits) .build() : AaOffenseCombatValue.builder() .strengthSupportFromFriends( supportFromFriends.filter(UnitSupportAttachment::getAaStrength))...
### Reproduction Steps 1. Open a save game for a map that doesn't exist. 2. Start the game. Expected: A dialog box saying the map doesn't exist, would you like...
## Description Running rvm on a shared host prints output: "grep: /proc/devices: Operation not permitted" ## Steps to reproduce ``` $ rvm --version grep: /proc/devices: Operation not permitted rvm 1.29.12-next...
Feature request: Generate bsinc tables at runtime on startup. Currently, the embedded bsinc tables take up a large proportion of the library's disk footprint. This could be minimized with a...