Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
057a4b72fc | ||
|
|
9b4fad07aa |
@@ -1,65 +0,0 @@
|
|||||||
name: Build
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- uses: actions/setup-java@v4
|
|
||||||
with:
|
|
||||||
distribution: temurin
|
|
||||||
java-version: '21'
|
|
||||||
cache: maven
|
|
||||||
|
|
||||||
- uses: stCarolas/setup-maven@v5
|
|
||||||
with:
|
|
||||||
maven-version: 3.9.9
|
|
||||||
|
|
||||||
- name: Configure Maven settings
|
|
||||||
run: |
|
|
||||||
mkdir -p ~/.m2
|
|
||||||
cat > ~/.m2/settings.xml <<'SETTINGS_EOF'
|
|
||||||
<settings>
|
|
||||||
<servers>
|
|
||||||
<server>
|
|
||||||
<id>gitea-packages</id>
|
|
||||||
<username>zlaura</username>
|
|
||||||
<password>${env.PACKAGE_TOKEN}</password>
|
|
||||||
</server>
|
|
||||||
</servers>
|
|
||||||
<profiles>
|
|
||||||
<profile>
|
|
||||||
<id>gitea-packages</id>
|
|
||||||
<repositories>
|
|
||||||
<repository>
|
|
||||||
<id>gitea-packages</id>
|
|
||||||
<url>https://git.softwarerat.com/api/packages/zlaura/maven</url>
|
|
||||||
<releases><enabled>true</enabled></releases>
|
|
||||||
<snapshots><enabled>true</enabled></snapshots>
|
|
||||||
</repository>
|
|
||||||
</repositories>
|
|
||||||
</profile>
|
|
||||||
</profiles>
|
|
||||||
<activeProfiles>
|
|
||||||
<activeProfile>gitea-packages</activeProfile>
|
|
||||||
</activeProfiles>
|
|
||||||
</settings>
|
|
||||||
SETTINGS_EOF
|
|
||||||
env:
|
|
||||||
PACKAGE_TOKEN: ${{ secrets.PACKAGE_TOKEN }}
|
|
||||||
|
|
||||||
- name: Build with Maven
|
|
||||||
run: mvn -B -U package
|
|
||||||
env:
|
|
||||||
PACKAGE_TOKEN: ${{ secrets.PACKAGE_TOKEN }}
|
|
||||||
|
|
||||||
- uses: actions/upload-artifact@v3
|
|
||||||
with:
|
|
||||||
name: Lobby-jar
|
|
||||||
path: target/*.jar
|
|
||||||
Vendored
+2
-1
@@ -1,3 +1,4 @@
|
|||||||
{
|
{
|
||||||
"java.configuration.updateBuildConfiguration": "interactive"
|
"java.configuration.updateBuildConfiguration": "automatic",
|
||||||
|
"java.compile.nullAnalysis.mode": "automatic"
|
||||||
}
|
}
|
||||||
@@ -1,27 +1,93 @@
|
|||||||
# Lobby
|
# lobby
|
||||||
|
|
||||||
[](https://git.softwarerat.com/zlaura/Lobby/actions)
|
|
||||||
|
|
||||||
The network hub/lobby plugin — player prefixes, scoreboard, join/quit handling, BungeeCord-style server switching, and the navigator/kit inventory menus for minigames built on [GameAPI](https://git.softwarerat.com/zlaura/GameAPI).
|
|
||||||
|
|
||||||
## Requirements
|
## Getting started
|
||||||
|
|
||||||
- Java 17
|
To make it easy for you to get started with GitLab, here's a list of recommended next steps.
|
||||||
- Maven
|
|
||||||
- Spigot API 1.20.4
|
|
||||||
|
|
||||||
## Dependencies
|
Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)!
|
||||||
|
|
||||||
- [GameAPI](https://git.softwarerat.com/zlaura/GameAPI) `1.6.4-SNAPSHOT`, resolved from the private Maven registry at `https://git.softwarerat.com/api/packages/zlaura/maven`
|
## Add your files
|
||||||
- `org.jetbrains:annotations`
|
|
||||||
|
|
||||||
## Building
|
- [ ] [Create](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#create-a-file) or [upload](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#upload-a-file) files
|
||||||
|
- [ ] [Add files using the command line](https://docs.gitlab.com/ee/gitlab-basics/add-file.html#add-a-file-using-the-command-line) or push an existing Git repository with the following command:
|
||||||
|
|
||||||
```bash
|
```
|
||||||
mvn -B package
|
cd existing_repo
|
||||||
|
git remote add origin https://Gitlab.Softwarerat.com/network/lobby.git
|
||||||
|
git branch -M main
|
||||||
|
git push -uf origin main
|
||||||
```
|
```
|
||||||
|
|
||||||
## Branches
|
## Integrate with your tools
|
||||||
|
|
||||||
- `main` — tracks the latest stable source used by CI
|
- [ ] [Set up project integrations](https://Gitlab.Softwarerat.com/network/lobby/-/settings/integrations)
|
||||||
- `1.21.10` — active development branch for the current Minecraft version target
|
|
||||||
|
## Collaborate with your team
|
||||||
|
|
||||||
|
- [ ] [Invite team members and collaborators](https://docs.gitlab.com/ee/user/project/members/)
|
||||||
|
- [ ] [Create a new merge request](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html)
|
||||||
|
- [ ] [Automatically close issues from merge requests](https://docs.gitlab.com/ee/user/project/issues/managing_issues.html#closing-issues-automatically)
|
||||||
|
- [ ] [Enable merge request approvals](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/)
|
||||||
|
- [ ] [Set auto-merge](https://docs.gitlab.com/ee/user/project/merge_requests/merge_when_pipeline_succeeds.html)
|
||||||
|
|
||||||
|
## Test and Deploy
|
||||||
|
|
||||||
|
Use the built-in continuous integration in GitLab.
|
||||||
|
|
||||||
|
- [ ] [Get started with GitLab CI/CD](https://docs.gitlab.com/ee/ci/quick_start/index.html)
|
||||||
|
- [ ] [Analyze your code for known vulnerabilities with Static Application Security Testing (SAST)](https://docs.gitlab.com/ee/user/application_security/sast/)
|
||||||
|
- [ ] [Deploy to Kubernetes, Amazon EC2, or Amazon ECS using Auto Deploy](https://docs.gitlab.com/ee/topics/autodevops/requirements.html)
|
||||||
|
- [ ] [Use pull-based deployments for improved Kubernetes management](https://docs.gitlab.com/ee/user/clusters/agent/)
|
||||||
|
- [ ] [Set up protected environments](https://docs.gitlab.com/ee/ci/environments/protected_environments.html)
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
|
# Editing this README
|
||||||
|
|
||||||
|
When you're ready to make this README your own, just edit this file and use the handy template below (or feel free to structure it however you want - this is just a starting point!). Thanks to [makeareadme.com](https://www.makeareadme.com/) for this template.
|
||||||
|
|
||||||
|
## Suggestions for a good README
|
||||||
|
|
||||||
|
Every project is different, so consider which of these sections apply to yours. The sections used in the template are suggestions for most open source projects. Also keep in mind that while a README can be too long and detailed, too long is better than too short. If you think your README is too long, consider utilizing another form of documentation rather than cutting out information.
|
||||||
|
|
||||||
|
## Name
|
||||||
|
Choose a self-explaining name for your project.
|
||||||
|
|
||||||
|
## Description
|
||||||
|
Let people know what your project can do specifically. Provide context and add a link to any reference visitors might be unfamiliar with. A list of Features or a Background subsection can also be added here. If there are alternatives to your project, this is a good place to list differentiating factors.
|
||||||
|
|
||||||
|
## Badges
|
||||||
|
On some READMEs, you may see small images that convey metadata, such as whether or not all the tests are passing for the project. You can use Shields to add some to your README. Many services also have instructions for adding a badge.
|
||||||
|
|
||||||
|
## Visuals
|
||||||
|
Depending on what you are making, it can be a good idea to include screenshots or even a video (you'll frequently see GIFs rather than actual videos). Tools like ttygif can help, but check out Asciinema for a more sophisticated method.
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection.
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README.
|
||||||
|
|
||||||
|
## Support
|
||||||
|
Tell people where they can go to for help. It can be any combination of an issue tracker, a chat room, an email address, etc.
|
||||||
|
|
||||||
|
## Roadmap
|
||||||
|
If you have ideas for releases in the future, it is a good idea to list them in the README.
|
||||||
|
|
||||||
|
## Contributing
|
||||||
|
State if you are open to contributions and what your requirements are for accepting them.
|
||||||
|
|
||||||
|
For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self.
|
||||||
|
|
||||||
|
You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser.
|
||||||
|
|
||||||
|
## Authors and acknowledgment
|
||||||
|
Show your appreciation to those who have contributed to the project.
|
||||||
|
|
||||||
|
## License
|
||||||
|
For open source projects, say how it is licensed.
|
||||||
|
|
||||||
|
## Project status
|
||||||
|
If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers.
|
||||||
|
|||||||
@@ -69,10 +69,10 @@
|
|||||||
<id>sonatype</id>
|
<id>sonatype</id>
|
||||||
<url>https://oss.sonatype.org/content/groups/public/</url>
|
<url>https://oss.sonatype.org/content/groups/public/</url>
|
||||||
</repository>
|
</repository>
|
||||||
<repository>
|
<repository>
|
||||||
<id>gitlab-maven</id>
|
<id>gitea</id>
|
||||||
<url>https://Gitlab.Softwarerat.com/api/v4/projects/16/packages/maven</url>
|
<url>http://heimserver.local:36107/api/packages/minecraft/maven</url>
|
||||||
</repository>
|
</repository>
|
||||||
</repositories>
|
</repositories>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
@@ -88,11 +88,11 @@
|
|||||||
<version>1.20.4-R0.1-SNAPSHOT</version>
|
<version>1.20.4-R0.1-SNAPSHOT</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.softwarerat</groupId>
|
<groupId>com.softwarerat</groupId>
|
||||||
<artifactId>GameAPI</artifactId>
|
<artifactId>GameAPI</artifactId>
|
||||||
<version>1.6.4-SNAPSHOT</version>
|
<version>1.6.4-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jetbrains</groupId>
|
<groupId>org.jetbrains</groupId>
|
||||||
<artifactId>annotations</artifactId>
|
<artifactId>annotations</artifactId>
|
||||||
|
|||||||
@@ -1,6 +0,0 @@
|
|||||||
package de.softwarerat.lobby.MenuAPI;
|
|
||||||
|
|
||||||
public class TestMenu {
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,16 +1,23 @@
|
|||||||
package de.softwarerat.lobby.listener;
|
package de.softwarerat.lobby.listener;
|
||||||
|
|
||||||
|
import org.bukkit.Bukkit;
|
||||||
|
import org.bukkit.ChatColor;
|
||||||
|
import org.bukkit.GameMode;
|
||||||
|
import org.bukkit.Location;
|
||||||
|
import org.bukkit.Material;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
import org.bukkit.event.EventHandler;
|
||||||
|
import org.bukkit.event.Listener;
|
||||||
|
import org.bukkit.event.player.PlayerJoinEvent;
|
||||||
|
|
||||||
import com.google.common.io.ByteArrayDataOutput;
|
import com.google.common.io.ByteArrayDataOutput;
|
||||||
import com.google.common.io.ByteStreams;
|
import com.google.common.io.ByteStreams;
|
||||||
import com.softwarerat.API.builder.SpigotInventory;
|
import com.softwarerat.API.builder.SpigotInventory;
|
||||||
import com.softwarerat.API.builder.SpigotItem;
|
import com.softwarerat.API.builder.SpigotItem;
|
||||||
|
|
||||||
import de.softwarerat.lobby.IPrefix;
|
import de.softwarerat.lobby.IPrefix;
|
||||||
import de.softwarerat.lobby.Lobby;
|
import de.softwarerat.lobby.Lobby;
|
||||||
import org.bukkit.*;
|
import de.softwarerat.lobby.scoreboard.LobbyScoreboard;
|
||||||
import org.bukkit.entity.Player;
|
|
||||||
import org.bukkit.event.EventHandler;
|
|
||||||
import org.bukkit.event.Listener;
|
|
||||||
import org.bukkit.event.player.PlayerJoinEvent;
|
|
||||||
|
|
||||||
|
|
||||||
public class JoinListener implements Listener {
|
public class JoinListener implements Listener {
|
||||||
@@ -41,6 +48,9 @@ public class JoinListener implements Listener {
|
|||||||
playerInventory.setSlot(new SpigotItem(Material.GRASS_BLOCK).setName(ChatColor.BLUE.toString() + ChatColor.BOLD + "Bauserver Joinen " + ChatColor.RESET + ChatColor.GRAY + "(Click)").build(), 4, (click) -> {
|
playerInventory.setSlot(new SpigotItem(Material.GRASS_BLOCK).setName(ChatColor.BLUE.toString() + ChatColor.BOLD + "Bauserver Joinen " + ChatColor.RESET + ChatColor.GRAY + "(Click)").build(), 4, (click) -> {
|
||||||
sendPlayer(player, "build-1");
|
sendPlayer(player, "build-1");
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
new LobbyScoreboard(player);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void sendPlayer(Player player, String targetServer) {
|
public void sendPlayer(Player player, String targetServer) {
|
||||||
|
|||||||
@@ -0,0 +1,30 @@
|
|||||||
|
package de.softwarerat.lobby.scoreboard;
|
||||||
|
|
||||||
|
import org.bukkit.ChatColor;
|
||||||
|
|
||||||
|
public enum EntryName {
|
||||||
|
ENTRY_0(0, ChatColor.DARK_PURPLE.toString()),
|
||||||
|
ENTRY_1(1, ChatColor.DARK_GRAY.toString()),
|
||||||
|
ENTRY_2(2, ChatColor.BOLD.toString()),
|
||||||
|
ENTRY_3(3, ChatColor.DARK_RED.toString()),
|
||||||
|
ENTRY_4(4, ChatColor.GRAY.toString()),
|
||||||
|
ENTRY_5(5, ChatColor.DARK_GREEN.toString()),
|
||||||
|
ENTRY_6(6, ChatColor.LIGHT_PURPLE.toString()),
|
||||||
|
ENTRY_7(7, ChatColor.UNDERLINE.toString());
|
||||||
|
|
||||||
|
private final int entry;
|
||||||
|
private final String entryName;
|
||||||
|
|
||||||
|
EntryName(int entry, String entryName) {
|
||||||
|
this.entry = entry;
|
||||||
|
this.entryName = entryName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getEntry() {
|
||||||
|
return entry;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getEntryName() {
|
||||||
|
return entryName;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,70 @@
|
|||||||
|
package de.softwarerat.lobby.scoreboard;
|
||||||
|
|
||||||
|
import org.bukkit.ChatColor;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
import org.bukkit.scheduler.BukkitRunnable;
|
||||||
|
|
||||||
|
import de.softwarerat.lobby.Lobby;
|
||||||
|
|
||||||
|
public class LobbyScoreboard extends ScoreboardBuilder {
|
||||||
|
|
||||||
|
private int socialId;
|
||||||
|
|
||||||
|
public LobbyScoreboard(Player player) {
|
||||||
|
super(player, ChatColor.DARK_PURPLE.toString() + ChatColor.BOLD + " twitch.tv/DerBanko ");
|
||||||
|
socialId = 0;
|
||||||
|
|
||||||
|
run();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void createScoreboard() {
|
||||||
|
setScore("test", 8);
|
||||||
|
setScore(ChatColor.DARK_GRAY.toString(), 7);
|
||||||
|
setScore(ChatColor.GRAY + "Dein Rang" + ChatColor.DARK_GRAY + ":", 6);
|
||||||
|
|
||||||
|
if(player.isOp()) {
|
||||||
|
setScore(ChatColor.RED + "Operator", 5);
|
||||||
|
} else {
|
||||||
|
setScore(ChatColor.GRAY + "Spieler", 5);
|
||||||
|
}
|
||||||
|
|
||||||
|
setScore(ChatColor.GRAY.toString(), 4);
|
||||||
|
setScore(ChatColor.AQUA + "twitter.com/DerBanko", 3);
|
||||||
|
setScore(ChatColor.RED.toString(), 2);
|
||||||
|
setScore(ChatColor.RED + player.getAddress().getHostName(), 1);
|
||||||
|
setScore(ChatColor.AQUA.toString(), 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void update() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private void run() {
|
||||||
|
new BukkitRunnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
|
||||||
|
switch (socialId) {
|
||||||
|
case 0:
|
||||||
|
setScore(ChatColor.AQUA + "softwarerat.com", 3);
|
||||||
|
break;
|
||||||
|
case 1:
|
||||||
|
setScore(ChatColor.DARK_PURPLE + "twitch.tv/zlavra", 3);
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
setScore(ChatColor.DARK_RED + "@zlavra:matrix.org", 3);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
socialId++;
|
||||||
|
|
||||||
|
if(socialId >= 3) {
|
||||||
|
socialId = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}.runTaskTimer(Lobby.getInstance(), 20, 20);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,114 @@
|
|||||||
|
package de.softwarerat.lobby.scoreboard;
|
||||||
|
|
||||||
|
import org.bukkit.Bukkit;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
import org.bukkit.scoreboard.DisplaySlot;
|
||||||
|
import org.bukkit.scoreboard.Objective;
|
||||||
|
import org.bukkit.scoreboard.Scoreboard;
|
||||||
|
import org.bukkit.scoreboard.Team;
|
||||||
|
|
||||||
|
public abstract class ScoreboardBuilder {
|
||||||
|
|
||||||
|
protected final Scoreboard scoreboard;
|
||||||
|
protected final Objective objective;
|
||||||
|
|
||||||
|
protected final Player player;
|
||||||
|
|
||||||
|
public ScoreboardBuilder(Player player, String displayName) {
|
||||||
|
this.player = player;
|
||||||
|
|
||||||
|
if(player.getScoreboard().equals(Bukkit.getScoreboardManager().getMainScoreboard())) {
|
||||||
|
player.setScoreboard(Bukkit.getScoreboardManager().getNewScoreboard());
|
||||||
|
}
|
||||||
|
|
||||||
|
this.scoreboard = player.getScoreboard();
|
||||||
|
|
||||||
|
if(this.scoreboard.getObjective("display") != null) {
|
||||||
|
this.scoreboard.getObjective("display").unregister();
|
||||||
|
}
|
||||||
|
|
||||||
|
this.objective = this.scoreboard.registerNewObjective("display", "dummy", displayName);
|
||||||
|
this.objective.setDisplaySlot(DisplaySlot.SIDEBAR);
|
||||||
|
|
||||||
|
createScoreboard();
|
||||||
|
}
|
||||||
|
|
||||||
|
public abstract void createScoreboard();
|
||||||
|
|
||||||
|
public abstract void update();
|
||||||
|
|
||||||
|
public void setDisplayName(String displayName) {
|
||||||
|
this.objective.setDisplayName(displayName);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setScore(String content, int score) {
|
||||||
|
Team team = getTeamByScore(score);
|
||||||
|
|
||||||
|
if(team == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
team.setPrefix(content);
|
||||||
|
showScore(score);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void removeScore(int score) {
|
||||||
|
hideScore(score);
|
||||||
|
}
|
||||||
|
|
||||||
|
private EntryName getEntryNameByScore(int score) {
|
||||||
|
for(EntryName name : EntryName.values()) {
|
||||||
|
if(score == name.getEntry()) {
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
private Team getTeamByScore(int score) {
|
||||||
|
EntryName name = getEntryNameByScore(score);
|
||||||
|
|
||||||
|
if(name == null) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
Team team = scoreboard.getEntryTeam(name.getEntryName());
|
||||||
|
|
||||||
|
if(team != null) {
|
||||||
|
return team;
|
||||||
|
}
|
||||||
|
|
||||||
|
team = scoreboard.registerNewTeam(name.name());
|
||||||
|
team.addEntry(name.getEntryName());
|
||||||
|
return team;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void showScore(int score) {
|
||||||
|
EntryName name = getEntryNameByScore(score);
|
||||||
|
|
||||||
|
if(name == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(objective.getScore(name.getEntryName()).isScoreSet()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
objective.getScore(name.getEntryName()).setScore(score);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void hideScore(int score) {
|
||||||
|
EntryName name = getEntryNameByScore(score);
|
||||||
|
|
||||||
|
if(name == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!objective.getScore(name.getEntryName()).isScoreSet()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
scoreboard.resetScores(name.getEntryName());
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
name: Lobby
|
name: Lobby
|
||||||
version: '1.0-SNAPSHOT'
|
version: '1.0-SNAPSHOT'
|
||||||
main: de.softwarerat.lobby.Lobby
|
main: de.softwarerat.lobby.Lobby
|
||||||
api-version: '1.20'
|
api-version: '1.21'
|
||||||
commands:
|
commands:
|
||||||
fly:
|
fly:
|
||||||
permission: lobby.fly
|
permission: lobby.fly
|
||||||
|
|||||||
Reference in New Issue
Block a user