Skip to content

Commit

Permalink
v3.9.2 b734
Browse files Browse the repository at this point in the history
* fix nametags not working on minecraft 1.16
  • Loading branch information
stumper66 committed Jan 6, 2023
1 parent 19ee538 commit 04ac4a8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>me.lokka30</groupId>
<artifactId>LevelledMobs</artifactId>
<version>3.9.2 b733</version>
<version>3.9.2 b734</version>

<name>LevelledMobs</name>
<description>The Ultimate RPG Mob Levelling Solution</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,9 @@ private void build() {
ver.getMinecraftVersion() == 1.19d && ver.getRevision() >= 3d ||
ver.getMinecraftVersion() >= 1.20d;

// protocollib is used on 1.16
if (ver.getMinecraftVersion() < 1.17) return;

try {
buildClasses();

Expand Down

0 comments on commit 04ac4a8

Please sign in to comment.