mirror of
https://github.com/Creators-of-Create/Create.git
synced 2025-03-04 06:44:40 +01:00
Conveyor improv
- Fixed ponder scenes with conveyors having inconsistent outcomes based on server tps
This commit is contained in:
parent
7f089e3e14
commit
f9c774e338
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ public class ChainConveyorBlockEntity extends KineticBlockEntity implements ITra
|
|||
removeInvalidConnections();
|
||||
}
|
||||
|
||||
float serverSpeed = level.isClientSide() ? ServerSpeedProvider.get() : 1f;
|
||||
float serverSpeed = level.isClientSide() && !isVirtual() ? ServerSpeedProvider.get() : 1f;
|
||||
float speed = getSpeed() / 360f;
|
||||
float radius = 1.5f;
|
||||
float distancePerTick = Math.abs(speed);
|
||||
|
|
Loading…
Add table
Reference in a new issue