Push final changes to knockback

This commit is contained in:
curtis 2023-05-30 23:10:05 +02:00
parent e7f1e61312
commit b4c9ea5415
1 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ public interface KnockbackImplementation {
void setActiveKnockbackProfile(Player player, KnockbackProfile knockbackProfile); void setActiveKnockbackProfile(Player player, KnockbackProfile knockbackProfile);
void createKnockbackProfile(String name); KnockbackProfile createKnockbackProfile(String name);
class DEFAULT implements KnockbackImplementation { class DEFAULT implements KnockbackImplementation {
@ -38,8 +38,8 @@ public interface KnockbackImplementation {
} }
@Override @Override
public void createKnockbackProfile(String name) { public KnockbackProfile createKnockbackProfile(String name) {
return null;
} }
} }