Added bin-files

This commit is contained in:
Frank Baumann 2012-11-16 03:16:50 +01:00
parent b827b9e172
commit db762d102a
43 changed files with 5 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -25,6 +25,7 @@ public class ConfigReader {
public boolean isLobbyDisabled=false; public boolean isLobbyDisabled=false;
public int timeToNextPlay=0; public int timeToNextPlay=0;
public int timeToNextLoot=0;
public ConfigReader(File file){ public ConfigReader(File file){
this.file=file; this.file=file;
@ -133,6 +134,10 @@ public class ConfigReader {
timeToNextPlay=configFile.getInt("timetonextplay"); timeToNextPlay=configFile.getInt("timetonextplay");
} }
if(configFile.contains("timetonextloot")){
timeToNextLoot=configFile.getInt("timetonextloot");
}
} }
public String getMsg(int id){ public String getMsg(int id){