Skip to content

Commit 6e8948c

Browse files
committed
Bump version, fix build
1 parent 03c1157 commit 6e8948c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
21 # Latest version
1616
]
1717
# and run on both Linux and Windows
18-
os: [ubuntu-20.04]
18+
os: [ubuntu-latest]
1919
runs-on: ${{ matrix.os }}
2020
steps:
2121
- name: checkout repository

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ org.gradle.jvmargs=-Xmx1G
1111
fabric_version=0.119.1+1.21.5
1212

1313
# Mod Properties
14-
mod_version = 2.6.2+1.21.5
14+
mod_version = 2.6.3+1.21.5
1515
maven_group = eu.pb4
1616
archives_base_name = placeholder-api

src/main/java/eu/pb4/placeholders/impl/textparser/BuiltinTags.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ public static void register() {
252252
false,
253253
(nodes, data, parser) -> {
254254
if (!data.isEmpty()) {
255-
return new ClickActionNode(nodes, ClickEvent.Action.RUN_COMMAND, parser.parseNode(data.get("value", 0)));
255+
return new ClickActionNode(nodes, ClickEvent.Action.RUN_COMMAND, parser.parseNode(data.get("value", 0, "")));
256256
}
257257
return new ParentNode(nodes);
258258
}
@@ -287,7 +287,7 @@ public static void register() {
287287
false, (nodes, data, parser) -> {
288288

289289
if (!data.isEmpty()) {
290-
return new ClickActionNode(nodes, ClickEvent.Action.OPEN_URL, parser.parseNode(data.get("value", 0)));
290+
return new ClickActionNode(nodes, ClickEvent.Action.OPEN_URL, parser.parseNode(data.get("value", 0, "")));
291291
}
292292
return new ParentNode(nodes);
293293
}

0 commit comments

Comments
 (0)