mirror of
https://github.com/xSquishyLiam/mc-GeyserModelEngine-plugin.git
synced 2025-12-19 14:59:19 +00:00
Merge remote-tracking branch 'origin/main'
# Conflicts: # pom.xml # src/main/java/re/imc/geysermodelengine/model/EntityTask.java
This commit is contained in:
@@ -133,7 +133,7 @@ public class EntityTask {
|
|||||||
|
|
||||||
private void sendSpawnPacket(Player onlinePlayer) {
|
private void sendSpawnPacket(Player onlinePlayer) {
|
||||||
EntityTask task = model.getTask();
|
EntityTask task = model.getTask();
|
||||||
int delay = 1;
|
int delay = 50;
|
||||||
boolean firstJoined = GeyserModelEngine.getInstance().getJoinedPlayer().getIfPresent(onlinePlayer) != null;
|
boolean firstJoined = GeyserModelEngine.getInstance().getJoinedPlayer().getIfPresent(onlinePlayer) != null;
|
||||||
if (firstJoined) {
|
if (firstJoined) {
|
||||||
delay = GeyserModelEngine.getInstance().getJoinSendDelay();
|
delay = GeyserModelEngine.getInstance().getJoinSendDelay();
|
||||||
@@ -156,8 +156,8 @@ public class EntityTask {
|
|||||||
sendScale(Collections.singleton(player), true);
|
sendScale(Collections.singleton(player), true);
|
||||||
sendColor(Collections.singleton(player), true);
|
sendColor(Collections.singleton(player), true);
|
||||||
updateEntityProperties(Collections.singleton(player), true);
|
updateEntityProperties(Collections.singleton(player), true);
|
||||||
}, 20, TimeUnit.MILLISECONDS);
|
}, 1000, TimeUnit.MILLISECONDS);
|
||||||
}, delay * 20L, TimeUnit.MILLISECONDS);
|
}, delay * 50L, TimeUnit.MILLISECONDS);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void sendScale(Collection<Player> players, boolean firstSend) {
|
public void sendScale(Collection<Player> players, boolean firstSend) {
|
||||||
@@ -331,10 +331,14 @@ public class EntityTask {
|
|||||||
if (GeyserModelEngine.getInstance().getJoinedPlayer() != null && GeyserModelEngine.getInstance().getJoinedPlayer().getIfPresent(player) != null) {
|
if (GeyserModelEngine.getInstance().getJoinedPlayer() != null && GeyserModelEngine.getInstance().getJoinedPlayer().getIfPresent(player) != null) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
Location playerLocation = player.getLocation().clone();
|
Location playerLocation = player.getLocation().clone();
|
||||||
Location entityLocation = entity.getLocation().clone();
|
Location entityLocation = entity.getLocation().clone();
|
||||||
playerLocation.setY(0);
|
playerLocation.setY(0);
|
||||||
entityLocation.setY(0);
|
entityLocation.setY(0);
|
||||||
|
if (playerLocation.getWorld() != entityLocation.getWorld()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
if (playerLocation.distanceSquared(entityLocation) > player.getSendViewDistance() * player.getSendViewDistance() * 48) {
|
if (playerLocation.distanceSquared(entityLocation) > player.getSendViewDistance() * player.getSendViewDistance() * 48) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user