Added basic drunkenness

This commit is contained in:
Sn0wStorm
2013-04-30 01:23:29 +02:00
parent a7db7ff833
commit 2894985e71
5 changed files with 183 additions and 38 deletions
+11
View File
@@ -90,6 +90,13 @@ public class BRecipe {
return false;
}
public boolean needsDistilling(){
if(distillruns == 0){
return true;
}
return false;
}
public boolean needsToAge(){
if(age == 0){
return false;
@@ -171,5 +178,9 @@ public class BRecipe {
return difficulty;
}
public int getAlcohol(){
return alcohol;
}
}