Skip to content

Commit

Permalink
remove MiniPlaceholders hook
Browse files Browse the repository at this point in the history
Will make a separated plugin instead
  • Loading branch information
HSGamer committed Jan 31, 2025
1 parent 8171841 commit 7138473
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 121 deletions.
19 changes: 0 additions & 19 deletions spigot/plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,6 @@
<id>placeholderapi</id>
<url>https://repo.extendedclip.com/releases/</url>
</repository>
<repository>
<id>papermc</id>
<url>https://repo.papermc.io/repository/maven-public/</url>
</repository>
</repositories>

<dependencies>
Expand Down Expand Up @@ -199,20 +195,5 @@
<version>2.11.6</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.github.miniplaceholders</groupId>
<artifactId>miniplaceholders-api</artifactId>
<version>2.2.3</version>
<scope>provided</scope>
</dependency>

<!-- For MiniPlaceholders -->
<!--suppress VulnerableLibrariesLocal -->
<dependency>
<groupId>io.papermc.paper</groupId>
<artifactId>paper-api</artifactId>
<version>1.19.4-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import io.github.projectunified.minelib.plugin.base.Loadable;
import me.hsgamer.topper.spigot.plugin.TopperPlugin;
import me.hsgamer.topper.spigot.plugin.hook.miniplaceholders.MiniPlaceholdersHook;
import me.hsgamer.topper.spigot.plugin.hook.placeholderapi.PlaceholderAPIHook;

import java.util.ArrayList;
Expand All @@ -24,9 +23,6 @@ private void registerHooks() {
if (isPluginLoaded("PlaceholderAPI")) {
hooks.add(new PlaceholderAPIHook(instance));
}
if (isPluginLoaded("MiniPlaceholders")) {
hooks.add(new MiniPlaceholdersHook(instance));
}
}

@Override
Expand Down

This file was deleted.

This file was deleted.

1 change: 0 additions & 1 deletion spigot/plugin/src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@ main: me.hsgamer.topper.spigot.plugin.TopperPlugin
api-version: 1.13
softdepend:
- PlaceholderAPI
- MiniPlaceholders
folia-supported: true

0 comments on commit 7138473

Please sign in to comment.