Fixed an issue with my previous commit

This commit is contained in:
Simon Baars 2016-05-11 16:11:08 +02:00
parent 0b18d29606
commit bfc36e8b6e

View file

@ -137,7 +137,7 @@ public class Potato implements Tuber {
*/
@Override
public boolean isDelicious() {
return this.isBaked() || this.isBoiled();
return this.isBaked() || this.isCooked();
}
/**