this.commonConstructor = this.commonType.getConstructor(entityClass);
// Obtain NMS class type and constructor
type = CommonUtil.getClass(Common.NMS_ROOT + ".Entity" + nmsName);
if (type == null) {
this.nmsType = new ClassTemplate();
this.nmsConstructor = null;
} else {
this.nmsType = ClassTemplate.create(type);
if (entityType == EntityType.PLAYER) {
this.nmsConstructor = null;