use super instead of manually registering

Ryan 2019-05-05 14:17:29 -04:00
parent a402cd0402
commit 24598de7aa
1 changed files with 2 additions and 2 deletions

@ -194,10 +194,10 @@ class SomeExpansion extends PlaceholderExpansion {
}
/*
* Since we override the register method, we need to manually
* Since we override the register method, we need to call the super method to actually
* register this hook
*/
return PlaceholderAPI.registerPlaceholderHook(getIdentifier(), this);
return super.register();
}
/**