diff --git a/eco-api/src/main/java/com/willfp/eco/core/integrations/placeholder/PlaceholderEntry.java b/eco-api/src/main/java/com/willfp/eco/core/integrations/placeholder/PlaceholderEntry.java index 7c7ba4e4..609c6b9f 100644 --- a/eco-api/src/main/java/com/willfp/eco/core/integrations/placeholder/PlaceholderEntry.java +++ b/eco-api/src/main/java/com/willfp/eco/core/integrations/placeholder/PlaceholderEntry.java @@ -77,4 +77,11 @@ public class PlaceholderEntry { public boolean requiresPlayer() { return requiresPlayer; } + + /** + * Register the placeholder. + */ + public void register() { + PlaceholderManager.registerPlaceholder(this); + } }