Fix #1872 by removing a unnecessary override

The parent class uses the exact same code to stop the screen from pausing. AFAIK it shouldn't break anything.
This commit is contained in:
macbrayne 2021-06-29 12:27:11 +02:00 committed by GitHub
parent 3d825fe632
commit e25a016596
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -150,11 +150,6 @@ public abstract class AbstractSimiContainerScreen<T extends Container> extends C
return true;
}
@Override
public boolean isPauseScreen() {
return false;
}
protected abstract void renderWindow(MatrixStack ms, int mouseX, int mouseY, float partialTicks);
@Override