Implement missing FakeWorld methods

This commit is contained in:
MD 2020-11-26 00:42:26 +00:00
parent 69748fd72e
commit 63c29a318e
1 changed files with 15 additions and 0 deletions

View File

@ -344,6 +344,21 @@ public class FakeWorld implements World {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public boolean isClearWeather() {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public void setClearWeatherDuration(int duration) {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public int getClearWeatherDuration() {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public Environment getEnvironment() {
return env;