Removed issue workaround from README
This commit is contained in:
@@ -50,13 +50,6 @@ To debug the application on a connected phone, run `gradlew android:installDebug
|
|||||||
|
|
||||||
If the terminal returns `Permission denied` or `Command not found` on Mac/Linux, run `chmod +x ./gradlew` before running `./gradlew`. *This is a one-time procedure.*
|
If the terminal returns `Permission denied` or `Command not found` on Mac/Linux, run `chmod +x ./gradlew` before running `./gradlew`. *This is a one-time procedure.*
|
||||||
|
|
||||||
#### Can not attach to current VM / Error during attachment using [...]
|
|
||||||
|
|
||||||
This is a problem related to [Jabel](https://github.com/bsideup/jabel), which I use to compile Java 8-compatible bytecode while using Java 9+ language features.
|
|
||||||
I don't know of a complete fix to this issue. However, if you're getting the error when running through IntelliJ, a workaround is to launch through Gradle *once*, which starts a daemon and avoids the problem in future runs through IntelliJ.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
Gradle may take up to several minutes to download files. Be patient. <br>
|
Gradle may take up to several minutes to download files. Be patient. <br>
|
||||||
|
|||||||
@@ -99,7 +99,7 @@ public class BlockForge extends PayloadAcceptor{
|
|||||||
public void buildConfiguration(Table table){
|
public void buildConfiguration(Table table){
|
||||||
Seq<Block> blocks = Vars.content.blocks().select(b -> b.isVisible() && b.size <= 2);
|
Seq<Block> blocks = Vars.content.blocks().select(b -> b.isVisible() && b.size <= 2);
|
||||||
|
|
||||||
ItemSelection.buildTable(table, blocks, () -> recipe, block -> recipe = block);
|
ItemSelection.buildTable(table, blocks, () -> recipe, this::configure);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
6
fastlane/metadata/android/en-US/changelogs/29672.txt
Normal file
6
fastlane/metadata/android/en-US/changelogs/29672.txt
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
- Fixed "host game" crash, as well as some other prominent bugs
|
||||||
|
- Logic: Breaking change: All coordinates are now in tiles, not in "world units"
|
||||||
|
- Logic: Added sensors for ammo (units/turrets)
|
||||||
|
- Campaign: Added research button in mobile multiplayer (check pause menu)
|
||||||
|
- Campaign: Added tech tree sharing in multiplayer - only the host can research
|
||||||
|
- Campaign: Re-added sector invasions, any sector near an enemy base can be invaded
|
||||||
Reference in New Issue
Block a user