Skip to content

Commit

Permalink
fix position
Browse files Browse the repository at this point in the history
  • Loading branch information
xhyrom committed Nov 2, 2021
1 parent 64692bf commit 811ee74
Show file tree
Hide file tree
Showing 11 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

public class CMIHolograms implements GlobalInterface {
public Object createHologram(Location location) {
location = location.add(0.5, 3.0, 0.5);
location = location.add(0.5, 2.8, 0.5);

CMILocation cmiLocation = new CMILocation(location);
CMIHologram hologram = new CMIHologram(Utils.getRandomString(5), cmiLocation);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public DecentHolograms() {
}

public Object createHologram(Location location) {
location = location.add(0.5, 3.0, 0.5);
location = location.add(0.5, 2.8, 0.5);
Hologram hd = new DefaultHologram(Utils.getRandomString(5), location);
hd.show();
hd.save();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

public class HolographicDisplays implements GlobalInterface {
public Object createHologram(Location location) {
location = location.add(0.5, 3.0, 0.5);
location = location.add(0.5, 2.8, 0.5);

Hologram hd = HologramsAPI.createHologram(Main.instance, location);
return hd;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public SainttXHolograms() {
}

public Object createHologram(Location location) {
location = location.add(0.5, 3.0, 0.5);
location = location.add(0.5, 2.8, 0.5);

Hologram hd = new Hologram(Utils.getRandomString(5), location);
hd.spawn();
Expand Down
2 changes: 1 addition & 1 deletion nexusblock-bukkit/src/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: NexusBlock
description: Just destroy the block
main: hyro.lib.Main
version: 0.2.3
version: 0.2.4
api-version: 1.13
author: Hyro
softdepend:
Expand Down
Binary file modified out/artifacts/nexusblock_bukkit_jar/nexusblock-bukkit.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion out/production/nexusblock-bukkit/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: NexusBlock
description: Just destroy the block
main: hyro.lib.Main
version: 0.2.3
version: 0.2.4
api-version: 1.13
author: Hyro
softdepend:
Expand Down

0 comments on commit 811ee74

Please sign in to comment.