Add player overview extra

This commit is contained in:
johni0702
2015-11-08 17:56:48 +01:00
parent b929bb24d8
commit 868d873fe8
7 changed files with 314 additions and 3 deletions

View File

@@ -89,7 +89,7 @@ public abstract class AbstractGuiCheckbox<T extends AbstractGuiCheckbox<T>>
@Override
public void onClick() {
getMinecraft().getSoundHandler().playSound(PositionedSoundRecord.create(BUTTON_SOUND, 1.0F));
checked = !checked;
setChecked(!isChecked());
super.onClick();
}