This commit is contained in:
@@ -17,17 +17,16 @@
|
|||||||
<evelon.path>C:/Users/Fraus/Documents/Libs/evelon-1.0.2-SNAPSHOT.jar</evelon.path>
|
<evelon.path>C:/Users/Fraus/Documents/Libs/evelon-1.0.2-SNAPSHOT.jar</evelon.path>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
|
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
<id>gitlab-maven</id>
|
<id>forgejo</id>
|
||||||
<url>https://gitlab.softwarerat.com/api/v4/projects/4/packages/maven</url>
|
<name>Forgejo Maven</name>
|
||||||
</repository>
|
<url>http://heimserver.local:36107/api/packages/minecraft/maven</url>
|
||||||
<snapshotRepository>
|
</repository>
|
||||||
<id>gitlab-maven</id>
|
|
||||||
<url>https://gitlab.softwarerat.com/api/v4/projects/4/packages/maven</url>
|
|
||||||
</snapshotRepository>
|
|
||||||
</distributionManagement>
|
</distributionManagement>
|
||||||
|
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<defaultGoal>clean package</defaultGoal>
|
<defaultGoal>clean package</defaultGoal>
|
||||||
<plugins>
|
<plugins>
|
||||||
@@ -66,10 +65,7 @@
|
|||||||
</build>
|
</build>
|
||||||
|
|
||||||
<repositories>
|
<repositories>
|
||||||
<repository>
|
|
||||||
<id>gitlab-maven</id>
|
|
||||||
<url>https://gitlab.softwarerat.com/api/v4/projects/4/packages/maven</url>
|
|
||||||
</repository>
|
|
||||||
<repository>
|
<repository>
|
||||||
<id>sonatype</id>
|
<id>sonatype</id>
|
||||||
<url>https://oss.sonatype.org/content/groups/public/</url>
|
<url>https://oss.sonatype.org/content/groups/public/</url>
|
||||||
@@ -77,15 +73,15 @@
|
|||||||
<repository>
|
<repository>
|
||||||
<id>papermc-repo</id>
|
<id>papermc-repo</id>
|
||||||
<url>https://repo.papermc.io/repository/maven-public/</url>
|
<url>https://repo.papermc.io/repository/maven-public/</url>
|
||||||
</repository>
|
|
||||||
<repository>
|
|
||||||
<id>gitlab-zyonic</id>
|
|
||||||
<url>https://gitlab.zyonicsoftware.com/api/v4/projects/119/packages/maven</url>
|
|
||||||
</repository>
|
</repository>
|
||||||
<repository>
|
<repository>
|
||||||
<id>bytemc</id>
|
<id>bytemc</id>
|
||||||
<url>https://artifactory.bytemc.de/artifactory/bytemc-public/</url>
|
<url>https://artifactory.bytemc.de/artifactory/bytemc-public/</url>
|
||||||
</repository>
|
</repository>
|
||||||
|
<repository>
|
||||||
|
<id>gitea</id>
|
||||||
|
<url>http://heimserver.local:36107/api/packages/minecraft/maven</url>
|
||||||
|
</repository>
|
||||||
</repositories>
|
</repositories>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
|||||||
@@ -63,8 +63,20 @@ public class BanPlayer extends Command implements TabExecutor {
|
|||||||
suggestions.add(playerName);
|
suggestions.add(playerName);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
while(suggestions.size() > 10){
|
||||||
|
suggestions.remove(suggestions.size() - 1);
|
||||||
|
return suggestions;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
return suggestions;
|
return suggestions;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
int i = 32.1;
|
||||||
|
|
||||||
private List<String> generateReasonString(String input){
|
private List<String> generateReasonString(String input){
|
||||||
List<String> suggestions = new ArrayList<>();
|
List<String> suggestions = new ArrayList<>();
|
||||||
|
|
||||||
|
|||||||
@@ -27,6 +27,15 @@ public class UUIDBanPlayer extends Command {
|
|||||||
ban.processBan(UUID.fromString(args[0]),l,reason,sp, BanLocation.BAN_LOCATION_MINECRAFT);
|
ban.processBan(UUID.fromString(args[0]),l,reason,sp, BanLocation.BAN_LOCATION_MINECRAFT);
|
||||||
|
|
||||||
//ToDo: Add DIscord message
|
//ToDo: Add DIscord message
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
for (int i = 0; i < 10; i++) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user