9
0
mirror of https://github.com/Xiao-MoMi/Custom-Fishing.git synced 2025-12-19 15:09:24 +00:00

update readme

This commit is contained in:
XiaoMoMi
2023-09-18 20:00:13 +08:00
parent abf0079651
commit ac5a31b2f8
2 changed files with 18 additions and 6 deletions

View File

@@ -53,7 +53,7 @@ Afdian: https://afdian.net/@xiaomomi
</dependency>
</dependencies>
```
### Gradle
### Gradle (Groovy)
```
repositories {
@@ -64,4 +64,16 @@ repositories {
dependencies {
compileOnly 'com.github.Xiao-MoMi:Custom-Fishing:{LATEST}'
}
```
### Gradle (Kotlin)
```
repositories {
maven("https://jitpack.io/")
}
```
```
dependencies {
compileOnly("com.github.Xiao-MoMi:Custom-Fishing:{LATEST}")
}
```

View File

@@ -151,11 +151,11 @@ public class IntegrationManagerImpl implements IntegrationManager {
hookMessage("BetonQuest");
}
}
if (plugin.isHookedPluginEnabled("NotQuests")) {
NotQuestHook notQuestHook = new NotQuestHook();
notQuestHook.register();
hookMessage("NotQuests");
}
// if (plugin.isHookedPluginEnabled("NotQuests")) {
// NotQuestHook notQuestHook = new NotQuestHook();
// notQuestHook.register();
// hookMessage("NotQuests");
// }
}
@Override