Skip to content

Commit 79a1803

Browse files
Update readme and change version
1 parent aa34cf4 commit 79a1803

3 files changed

Lines changed: 29 additions & 44 deletions

File tree

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @AlexProgrammerDE @cubebuilder
1+
* @AlexProgrammerDE

README.md

Lines changed: 12 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -2,46 +2,31 @@
22

33
[![PistonDev Discord](https://discord.com/api/guilds/739784741124833301/embed.png)](https://discord.gg/CDrcxzH)
44
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2FAlexProgrammerDE%2FPistonQueue.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2FAlexProgrammerDE%2FPistonQueue?ref=badge_shield)
5-
[![](https://img.shields.io/badge/contributions-welcome-brightgreen)](https://github.com/AlexProgrammerDE/PistonQueue)
5+
[![Contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen)](https://github.com/AlexProgrammerDE/PistonQueue)
66

77
## About
88

9-
PistonQueue is a basic and easy to use queue plugin designed for anarchy and survival servers. This plugin is a fork of
10-
LeeesBungeeQueue but LeeesBungeeQueue was a designed more for the server 6b6t.org, so a fork of the plugin was created
11-
that is designed for everyone and has more updates and support.
9+
PistonQueue is a basic and easy to use queue plugin designed for anarchy and survival servers.
10+
This plugin is a fork of LeeesBungeeQueue, which is very custom and did lack many features.
11+
This fork aims at providing more features and a more stable queue system.
1212

1313
## Features
1414

15-
### Tablist
16-
17-
A much more easy to use tablist compared to the old one.
18-
19-
### Server ping information and a custom protocol
20-
21-
![Server ping with version](https://cdn.discordapp.com/attachments/722198099132678148/751842799682453606/unknown.png)
22-
23-
### Custom Kick Messages
24-
25-
For example the "You have lost connection to the server" message you see on the server 2b2t.org.
26-
27-
### Custom Server Offline Messages
28-
29-
Instead of showing an error saying the server is down you can customize this message to whatever message you want.
30-
31-
### Auth server support
32-
33-
Auth server support for cracked (offline mode: false) servers. You can now have the authserver go first and then the
34-
queue!
15+
* BungeeCord and Velocity support.
16+
* Queue system with reserved slots.
17+
* Shadow-banning players.
18+
* Built-in support for forcing people into the end void.
19+
* Auth server support for cracked (offline mode: false) servers.
20+
* Joining the auth server first before the queue server.
3521

3622
## Setup
3723

3824
[Wiki](https://github.com/AlexProgrammerDE/PistonQueue/wiki)
39-
Check out the wiki for a tutorial on how to setup PistonQueue.
25+
Check out the wiki for a tutorial on how to set up PistonQueue.
4026

4127
[![PistonDev Discord](https://discord.com/api/guilds/739784741124833301/widget.png?style=banner2)](https://discord.gg/CDrcxzH)
4228

43-
If you find any bugs or ways to improve the plugin open a issue on github.
44-
29+
If you find any bugs or ways to improve the plugin open an issue on GitHub.
4530

4631
## License
4732
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2FAlexProgrammerDE%2FPistonQueue.svg?type=large)](https://app.fossa.com/projects/git%2Bgithub.com%2FAlexProgrammerDE%2FPistonQueue?ref=badge_large)

pom.xml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>net.pistonmaster</groupId>
66
<artifactId>PistonQueue</artifactId>
7-
<version>2.4.0</version>
7+
<version>2.3.0</version>
88

99
<name>PistonQueue</name>
1010
<description>Best queue plugin out there!</description>
@@ -147,19 +147,19 @@
147147

148148
<repositories>
149149
<repository>
150-
<id>spigotmc-repo</id>
150+
<id>spigotmc</id>
151151
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
152152
</repository>
153153
<repository>
154-
<id>bungeecord-repo</id>
154+
<id>bungeecord</id>
155155
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
156156
</repository>
157157
<repository>
158-
<id>dmulloy2-repo</id>
158+
<id>dmulloy2</id>
159159
<url>https://repo.dmulloy2.net/nexus/repository/public/</url>
160160
</repository>
161161
<repository>
162-
<id>codemc-repo</id>
162+
<id>codemc</id>
163163
<url>https://repo.codemc.org/repository/maven-public/</url>
164164
</repository>
165165
<repository>
@@ -169,11 +169,6 @@
169169
</repositories>
170170

171171
<dependencies>
172-
<dependency>
173-
<groupId>org.spongepowered</groupId>
174-
<artifactId>configurate-yaml</artifactId>
175-
<version>4.1.2</version>
176-
</dependency>
177172
<dependency>
178173
<groupId>org.spigotmc</groupId>
179174
<artifactId>spigot-api</artifactId>
@@ -194,6 +189,12 @@
194189
<type>javadoc</type>
195190
<scope>provided</scope>
196191
</dependency>
192+
<dependency>
193+
<groupId>com.velocitypowered</groupId>
194+
<artifactId>velocity-api</artifactId>
195+
<version>3.1.0</version>
196+
<scope>provided</scope>
197+
</dependency>
197198
<dependency>
198199
<groupId>org.bstats</groupId>
199200
<artifactId>bstats-bungeecord</artifactId>
@@ -204,6 +205,11 @@
204205
<artifactId>bstats-velocity</artifactId>
205206
<version>2.2.1</version>
206207
</dependency>
208+
<dependency>
209+
<groupId>org.spongepowered</groupId>
210+
<artifactId>configurate-yaml</artifactId>
211+
<version>4.1.2</version>
212+
</dependency>
207213
<dependency>
208214
<groupId>com.comphenix.protocol</groupId>
209215
<artifactId>ProtocolLib</artifactId>
@@ -222,11 +228,5 @@
222228
<version>1.18.22</version>
223229
<scope>provided</scope>
224230
</dependency>
225-
<dependency>
226-
<groupId>com.velocitypowered</groupId>
227-
<artifactId>velocity-api</artifactId>
228-
<version>3.1.0</version>
229-
<scope>provided</scope>
230-
</dependency>
231231
</dependencies>
232232
</project>

0 commit comments

Comments
 (0)