Skip to content

Commit

Permalink
Release v1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
vLuckyyy committed Dec 9, 2023
1 parent 992c9e6 commit 2c55b55
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 87 deletions.
52 changes: 0 additions & 52 deletions CHANGELOGS.md

This file was deleted.

2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/eternalcode-java.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group = "com.eternalcode"
version = "1.0.1"
version = "1.0.2"

checkstyle {
toolVersion = "10.12.5"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -380,22 +380,7 @@ public static class ENBorderSection implements BorderSection {
@Getter
@Contextual
public static class ENDecorationItemsSection implements DecorationItemsSection {
public List<ConfigItem> items = List.of(
ConfigItem.builder()
.withName("&8» &6Example item")
.withLore(Collections.singletonList("<gray>Click to set time to day"))
.withMaterial(Material.YELLOW_CARPET)
.withSlot(18)
.withCommands(List.of("day"))
.build(),
ConfigItem.builder()
.withName("&8» &6Example item 2")
.withLore(Collections.singletonList("<gray>Click to set time to night"))
.withMaterial(Material.BLUE_CARPET)
.withSlot(19)
.withCommands(List.of("night"))
.build()
);
public List<ConfigItem> items = List.of();
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -384,22 +384,7 @@ public static class PLBorderSection implements BorderSection {
@Getter
@Contextual
public static class PLDecorationItemsSection implements DecorationItemsSection {
public List<ConfigItem> items = List.of(
ConfigItem.builder()
.withMaterial(Material.YELLOW_CARPET)
.withName("&8» &6Przykładowy przedmiot")
.withLore(Collections.singletonList("<gray>Kliknij aby ustawić dzień!"))
.withSlot(18)
.withCommands(List.of("day"))
.build(),
ConfigItem.builder()
.withMaterial(Material.BLUE_CARPET)
.withName("&8» &6Przykładowy przedmiot 2")
.withLore(Collections.singletonList("<gray>Kliknij aby ustawić noc!"))
.withSlot(19)
.withCommands((List.of("night")))
.build()
);
public List<ConfigItem> items = List.of();
}
}
}
Expand Down
22 changes: 20 additions & 2 deletions raw_commands_docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,10 @@
{
"name": "clear ",
"aliases": [],
"permissions": [],
"permissions": [
"eternalcore.clear.other",
"eternalcore.clear"
],
"descriptions": [
"Clears inventory of player"
],
Expand All @@ -236,7 +239,9 @@
{
"name": "clear ",
"aliases": [],
"permissions": [],
"permissions": [
"eternalcore.clear"
],
"descriptions": [
"Clears your inventory"
],
Expand Down Expand Up @@ -1297,6 +1302,19 @@
"\u003cplayer\u003e \u003ctarget-player\u003e"
]
},
{
"name": "teleportorandomplayer ",
"aliases": [],
"permissions": [
"eternalcore.tprp"
],
"descriptions": [
"Teleport to a random player on the server, with the option to filter op players"
],
"arguments": [
""
]
},
{
"name": "tellraw ",
"aliases": [],
Expand Down

0 comments on commit 2c55b55

Please sign in to comment.