Skip to content
This repository was archived by the owner on Jan 20, 2024. It is now read-only.

Commit df09d5b

Browse files
committed
ChatBubble: fix high spawn
1 parent 08b1fbc commit df09d5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/net/flectone/chat/module/chatBubble/ChatBubbleModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public void spawn(@NotNull Player player, @NotNull String message, @NotNull Stri
4747

4848
int duration = (message.length() + 8 * messageStrings.size()) * 1200 / readSpeed;
4949

50-
Entity lastVehicle = spawnStringBubble(player, "", player.getLocation(), duration);
50+
Entity lastVehicle = player;
5151

5252
for (int x = messageStrings.size() - 1; x > -1; x--) {
5353
if(lastVehicle == null) return;

0 commit comments

Comments
 (0)