Skip to content

Commit ffd7b75

Browse files
committed
Update supported Minecraft versions
1 parent d18494a commit ffd7b75

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v2.0.3
2+
- Fix Stop command
3+
- List 1.21.8 support
4+
15
# v2.0.2
26
- List 1.21.5, .6 and .7 support
37

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ sources_url=https://github.com/exaroton/proxy-plugin
1717
issues_url=https://github.com/exaroton/proxy-plugin/issues
1818

1919
minecraft_version=1.21.7
20-
minecraft_versions=1.21,1.21.1,1.21.2,1.21.3,1.21.4,1.21.5,1.21.6,1.21.7
20+
minecraft_versions=1.21,1.21.1,1.21.2,1.21.3,1.21.4,1.21.5,1.21.6,1.21.7,1.21.8
2121
minor_minecraft_version=1.21
2222
min_minecraft_version=1.21
2323
max_minecraft_version=1.22

proxy/src/main/java/com/exaroton/proxy/commands/StopCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public void execute(CommandSourceAccessor source, Server server) throws IOExcept
3333
new WaitForStatusSubscriber(subscribers.getListener(server), source, ServerStatus.GROUP_OFFLINE)
3434
.subscribe();
3535

36-
server.start();
36+
server.stop();
3737
source.sendSuccess(Component.text("Stopping server")
3838
.appendSpace()
3939
.append(Components.addressText(server))

0 commit comments

Comments
 (0)