mirror of
https://github.com/exituser/Brewery.git
synced 2026-09-17 06:38:56 +00:00
Added basic drunkenness
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user