Skip to content

Commit 88fff0d

Browse files
committed
I'm happy to release this as 1.5!
1 parent 47b126b commit 88fff0d

4 files changed

Lines changed: 17 additions & 6 deletions

File tree

README.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ There are 4 tiers of upgrades that will upgrade most of the machine in PA, norma
1818
## [RFEngine](RFEngine)
1919
You can put this little item into the fuel slot of any PA machine and it will enable the machine to accept and run off RF power instead of solid fuel.
2020

21+
## [Wither Tools](WitherTools)
22+
By infusing the energies of a nether star into basic resources it is possible to create a version of them that seems to be able to withstand a lot more durability. Using these resources you should be able to create tools that can be used for a much longer time, but otherwise have the same properties.
23+
2124
## [The Miner](Miner)
2225
This is a simple mining block that requires fuel and tools to run.
2326
You can read more about how the miner works on the [Miners](Miner) page.
@@ -26,6 +29,14 @@ You can read more about how the miner works on the [Miners](Miner) page.
2629
A simple machine for creating a tree farm. Requires an axe and fuel to run.
2730
Read more about it on the [Chopper](Chopper) page.
2831

32+
## [The Planter](Planter)
33+
A simple machine for farming various crops and other plants. Requires an hoe and fuel to run.
34+
Read more about it on the [Planter](Planter) page.
35+
2936
## [The Generator](Generator)
3037
This is a simple Generator that just requires fuel to run. All tiers produce the same amount, the later tiers just produce it faster.
31-
You can read more about how the generator works on the [Generator](Generator) page.
38+
You can read more about how the generator works on the [Generator](Generator) page.
39+
40+
## [The Crafter](Crafter)
41+
This machine will, for the cost of a small amount of fuel, craft an item that is selected in the left hand crafting grid using the items that are in the right hand storage slots.
42+
You can read more about how the generator works on the [Crafter](Crafter) page

build.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
minecraft_version=1.7.10
22
forge_version=10.13.2.1230
3-
mod_version=1.4
3+
mod_version=1.5
44
buildNum=0
5-
droneAlter=24
5+
droneAlter=67

src/main/java/com/vanhal/progressiveautomation/events/EventPlayers.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
public class EventPlayers {
2121

22-
private List<String> names = Arrays.asList();
22+
private ArrayList<String> names = new ArrayList<String>();
2323
private final String url = "https://raw.githubusercontent.com/Vanhal/PAData/master/names.txt";
2424

2525
public EventPlayers() {
@@ -32,7 +32,7 @@ private void updateList() {
3232
BufferedReader reader = new BufferedReader(new InputStreamReader(listFile.openStream()));
3333
String temp = reader.readLine();
3434
while (temp!=null) {
35-
names.add(temp);
35+
names.add(temp.trim());
3636
temp = reader.readLine();
3737
}
3838
} catch (Exception e) {

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.4.0
1+
1.5.0

0 commit comments

Comments
 (0)