Removed issue workaround from README

This commit is contained in:
Anuken
2020-10-18 09:29:49 -04:00
parent c1c41a19c8
commit 14c42c5652
3 changed files with 7 additions and 8 deletions

View File

@ -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.*
#### 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>

View File

@ -99,7 +99,7 @@ public class BlockForge extends PayloadAcceptor{
public void buildConfiguration(Table table){
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

View 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