Fix crash when not looking at a sign

This commit is contained in:
Marcel Konrad
2019-10-25 16:10:25 +02:00
parent 7832b8bf2d
commit c2ecfaf496
2 changed files with 1 additions and 1 deletions

View File

@@ -153,7 +153,7 @@ public class ContentSignEditor extends Content
@Override
public void tick(Container container)
{
if(!this.editColor)
if(this.isActive && !this.editColor)
{
this.commandField.tick();
}