Skip to content

Commit 61d6347

Browse files
committed
update to 1.20.4
1 parent c33b72b commit 61d6347

4 files changed

Lines changed: 6 additions & 16 deletions

File tree

README.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -131,13 +131,3 @@ dependencies {
131131
compileOnly 'maven.modrinth:villager-info:3.0.1'
132132
}
133133
```
134-
## Todo:
135-
- [x] Toggle for information output
136-
- [x] Personal options for output(?)
137-
- [ ] Add a command to clear all current highlights and reset all villager highlight PDC data
138-
- [ ] Adjust the functionality of the workstation highlights so that if someone starts the highlight again, it's not strictly ignores, but starts the time over again
139-
- [ ] Add different info modes
140-
- [ ] Add more information like if the villager has been healed previously, and if so, by whom
141-
- [ ] Use pages for the information so that it's not all in one big list
142-
- [ ] Use click events to trigger the block highlights
143-
- [ ] Highlight for bed location, Village center

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ plugins {
55
}
66

77
group = "simplexity"
8-
version = "3.0.4"
8+
version = "3.0.5"
99

1010
dependencies {
11-
paperweight.devBundle("org.purpurmc.purpur", "1.20.2-R0.1-SNAPSHOT")
11+
paperweight.devBundle("org.purpurmc.purpur", "1.20.4-R0.1-SNAPSHOT")
1212
}
1313
repositories {
1414
maven("https://repo.purpurmc.org/snapshots")

src/main/java/simplexity/villagerinfo/VillagerInfo.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ public static VillagerInfo getInstance() {
3535
}
3636

3737
private final MiniMessage miniMessage = MiniMessage.miniMessage();
38-
private final List<String> legacyVersions = List.of("1.19", "1.19.1", "1.19.2", "1.19.3", "1.20.0", "1.20.1");
39-
private final List<String> nmsSupportedVersions = List.of("1.20.2");
38+
private final List<String> legacyVersions = List.of("1.19", "1.19.1", "1.19.2", "1.19.3");
39+
private final List<String> nmsSupportedVersions = List.of("1.20.4");
4040
private boolean usingPurpur = true;
4141
private boolean legacyVersion = false;
4242
private boolean nmsUnsupported = false;

src/main/java/simplexity/villagerinfo/events/VillagerOutputEvent.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
import org.bukkit.Location;
99
import org.bukkit.Material;
1010
import org.bukkit.attribute.Attribute;
11-
import org.bukkit.craftbukkit.v1_20_R2.entity.CraftPlayer;
12-
import org.bukkit.craftbukkit.v1_20_R2.entity.CraftVillager;
11+
import org.bukkit.craftbukkit.v1_20_R3.entity.CraftPlayer;
12+
import org.bukkit.craftbukkit.v1_20_R3.entity.CraftVillager;
1313
import org.bukkit.entity.Player;
1414
import org.bukkit.entity.Villager;
1515
import org.bukkit.entity.memory.MemoryKey;

0 commit comments

Comments
 (0)