This is my code:
public void playerTickEvent(PlayerTickEvent event) {
if (this.count < 20) {
this.count++;
} else {
this.count = 0;
// Some code
}
}
But i get this error:
error: ';' expected
public void playerTickEvent(PlayerTickEvent event) {
^
error: ';' expected
public void playerTickEvent(PlayerTickEvent event) {
^
What do I do?