Horse method not renamed properly

This commit is contained in:
fullwall 2020-01-11 13:33:52 +09:00
parent 52e288e43f
commit 44054d5941
5 changed files with 10 additions and 10 deletions

View File

@ -94,11 +94,11 @@ public class HorseController extends MobEntityController {
}
@Override
public boolean ca() {
public boolean cj() {
if (npc != null && riding) {
return true;
}
return super.ca();
return super.cj();
}
@Override

View File

@ -95,11 +95,11 @@ public class HorseDonkeyController extends MobEntityController {
}
@Override
public boolean ca() {
public boolean cj() {
if (npc != null && riding) {
return true;
}
return super.ca();
return super.cj();
}
@Override

View File

@ -93,11 +93,11 @@ public class HorseMuleController extends MobEntityController {
}
@Override
public boolean ca() {
public boolean cj() {
if (npc != null && riding) {
return true;
}
return super.ca();
return super.cj();
}
@Override

View File

@ -97,11 +97,11 @@ public class HorseSkeletonController extends MobEntityController {
}
@Override
public boolean ca() {
public boolean cj() {
if (npc != null && riding) {
return true;
}
return super.ca();
return super.cj();
}
@Override

View File

@ -97,11 +97,11 @@ public class HorseZombieController extends MobEntityController {
}
@Override
public boolean ca() {
public boolean cj() {
if (npc != null && riding) {
return true;
}
return super.ca();
return super.cj();
}
@Override