Skip to content

Commit

Permalink
EliteMobs 7.3.12-SNAPSHOT-10
Browse files Browse the repository at this point in the history
- [Fix] Hotfix of an error related to Wormholes

Signed-off-by: MagmaGuy <tiagoarnaut@gmail.com>
  • Loading branch information
MagmaGuy committed Jan 10, 2022
1 parent 265eaed commit e4c7c2f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ compileJava.options.encoding = "UTF-8"
compileTestJava.options.encoding = "UTF-8"

group 'com.magmaguy'
version '7.3.12-SNAPSHOT-9'
version '7.3.12-SNAPSHOT-10'

repositories {
maven {
Expand Down
1 change: 1 addition & 0 deletions src/main/java/wormhole/Wormhole.java
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ private void initializeTextDisplay2() {
}

private ArmorStand initializeTextDisplay(Location location, String locationText) {
if (location == null || location.getWorld() == null) return null;
ArmorStand armorStand = location.getWorld().spawn(location.clone().add(new Vector(0, 1.2, 0)), ArmorStand.class, new Consumer<ArmorStand>() {
@Override
public void accept(ArmorStand armorStand) {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: EliteMobs
version: 7.3.12-SNAPSHOT-9
version: 7.3.12-SNAPSHOT-10
author: MagmaGuy
main: com.magmaguy.elitemobs.EliteMobs
api-version: 1.14
Expand Down

0 comments on commit e4c7c2f

Please sign in to comment.