Skip to content
This repository has been archived by the owner on Nov 27, 2020. It is now read-only.

Commit

Permalink
Bug Fix for AllianceBankContent.java
Browse files Browse the repository at this point in the history
  • Loading branch information
d1vshar committed Nov 20, 2018
1 parent 95dd280 commit be15495
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.github.adorable-skullmaster</groupId>
<artifactId>pw4j</artifactId>
<version>1.2.2</version> <!-- FIXME version bump -->
<version>1.2.3</version> <!-- FIXME version bump -->
<name>pw4j</name>
<description>Java Wrapper for Politics and War API</description>
<packaging>jar</packaging>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,40 +18,40 @@ public class AllianceBankContent {
private int resourceTaxrate;
@SerializedName("money")
@Expose
private int money;
private double money;
@SerializedName("food")
@Expose
private int food;
private double food;
@SerializedName("coal")
@Expose
private int coal;
private double coal;
@SerializedName("oil")
@Expose
private int oil;
private double oil;
@SerializedName("uranium")
@Expose
private int uranium;
private double uranium;
@SerializedName("iron")
@Expose
private int iron;
private double iron;
@SerializedName("bauxite")
@Expose
private int bauxite;
private double bauxite;
@SerializedName("lead")
@Expose
private int lead;
private double lead;
@SerializedName("gasoline")
@Expose
private int gasoline;
private double gasoline;
@SerializedName("munitions")
@Expose
private int munitions;
private double munitions;
@SerializedName("steel")
@Expose
private int steel;
private double steel;
@SerializedName("aluminum")
@Expose
private int aluminum;
private double aluminum;

public int getAllianceId() {
return allianceId;
Expand All @@ -69,51 +69,51 @@ public int getResourceTaxrate() {
return resourceTaxrate;
}

public int getMoney() {
public double getMoney() {
return money;
}

public int getFood() {
public double getFood() {
return food;
}

public int getCoal() {
public double getCoal() {
return coal;
}

public int getOil() {
public double getOil() {
return oil;
}

public int getUranium() {
public double getUranium() {
return uranium;
}

public int getIron() {
public double getIron() {
return iron;
}

public int getBauxite() {
public double getBauxite() {
return bauxite;
}

public int getLead() {
public double getLead() {
return lead;
}

public int getGasoline() {
public double getGasoline() {
return gasoline;
}

public int getMunitions() {
public double getMunitions() {
return munitions;
}

public int getSteel() {
public double getSteel() {
return steel;
}

public int getAluminum() {
public double getAluminum() {
return aluminum;
}
}

0 comments on commit be15495

Please sign in to comment.