Skip to content

Commit c938f8e

Browse files
committed
1.21.4
1 parent 3d32183 commit c938f8e

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Each plugin needs a main class that implements `ZenithProxyPlugin` and is annota
2222

2323
Plugin metadata like its unique id, version, and supported MC versions is defined in the `@Plugin` annotation.
2424

25-
[See example](https://github.com/rfresh2/ZenithProxyExamplePlugin/blob/1.21.0/src/main/java/org/example/ExamplePlugin.java)
25+
[See example](https://github.com/rfresh2/ZenithProxyExamplePlugin/blob/1.21.4/src/main/java/org/example/ExamplePlugin.java)
2626

2727
### Plugin API
2828

@@ -34,12 +34,12 @@ This method provides a `PluginAPI` object that you can use to register modules,
3434

3535
I recommend looking at existing modules and commands for examples.
3636

37-
* [Module](https://github.com/rfresh2/ZenithProxy/tree/1.21.0/src/main/java/com/zenith/module)
38-
* [Command](https://github.com/rfresh2/ZenithProxy/tree/1.21.0/src/main/java/com/zenith/command)
37+
* [Module](https://github.com/rfresh2/ZenithProxy/tree/1.21.4/src/main/java/com/zenith/module)
38+
* [Command](https://github.com/rfresh2/ZenithProxy/tree/1.21.4/src/main/java/com/zenith/command)
3939

4040
### JavaDocs
4141

42-
https://maven.2b2t.vc/javadoc/releases/com/zenith/ZenithProxy/1.21.0-SNAPSHOT
42+
https://maven.2b2t.vc/javadoc/releases/com/zenith/ZenithProxy/1.21.4-SNAPSHOT
4343

4444
### Building Plugins
4545

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugin_version=1.0.0
22
plugin_name=ZenithProxyExamplePlugin
3-
mc=1.21.0
3+
mc=1.21.4
44
maven_group=org.example
55

66
org.gradle.configuration-cache=true

src/main/java/org/example/ExamplePlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
description = "ZenithProxy Example Plugin",
1818
url = "https://github.com/rfresh2/ZenithProxyExamplePlugin",
1919
authors = {"rfresh2"},
20-
mcVersions = {"1.21.0"} // to indicate any MC version: @Plugin(mcVersions = "*")
20+
mcVersions = {"1.21.4"} // to indicate any MC version: @Plugin(mcVersions = "*")
2121
// if you touch packet classes, you almost certainly need to pin to a single mc version
2222
)
2323
public class ExamplePlugin implements ZenithProxyPlugin {

src/main/java/org/example/command/ExampleCommand.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ public CommandUsage commandUsage() {
2222
.name("examplePlugin")
2323
.category(CommandCategory.MODULE)
2424
.description("""
25-
Example plugin command
26-
""")
25+
Example plugin command
26+
""")
2727
.usageLines(
2828
"on/off",
2929
"delay <ticks>"

0 commit comments

Comments
 (0)