
Anti-Smooth
Makes entity movements more responsive
Обновлён 27 июня 2026 г. · опубликован 16 мая 2026 г.
Anti-Smooth
Download from Modrinth: https://modrinth.com/mod/anti-smooth
Anti-Smooth makes the server send entity updates more frequently to make player interactions with them (especially knockback from attacks) feel more responsive almost to a point that matches the behavior of mobs in true singleplayer from old versions before release 1.3. This does increase the bandwidth used so it is best to only use this mod for singleplayer worlds, however mobs that are far enough away get interpolated with the vanilla method instead. Additionally, velocity gets applied client side so mobs can move while waiting for updates and knockback gets applied instantly.
Anti-Smooth is available for 1.20.1+ on Fabric and 1.21.1+ on NeoForge. If Anti-Smooth seems to not be available for newer versions, try using the mod jar for the most recent Minecraft version that it claims to support and if it doesn't work then please report it as an issue.
Anti-Smooth was inspired by No Mob Latency which does basically the same thing, however I wanted to do my own take on it that supported more versions.
Config
The configuration can be found in the "antismooth.json" file in the config folder.
{
// Controls whether interpolation is enabled or otherwise position packets are sent every tick.
// Interpolation is when the game smoothly transitions entity positions over multiple ticks
// and it is a vanilla feature.
// Interpolation is set to "multiplayerOnly" by default for two reasons:
// - The client cannot detect if a server has Anti-Smooth installed.
// - Anti-Smooth increases bandwidth consumption because it sends additional
// entity position update packets which is not ideal for server performance.
// Set to "disabled" if you want to disable interpolation on multiplayer servers anyways,
// however this will result in choppy movements when playing on vanilla servers.
// Set to "enabled" if you want interpolation in singleplayer worlds as well.
// Default value: "multiplayerOnly"
"interpolation": "multiplayerOnly",
// The minimum distance from which entities will always have interpolation applied regardless
// of the "interpolation" setting. Setting this to 0 or lower disables this behavior.
// Having this mismatched from a server
// Default value: 64.0
"minInterpolationDist": 64.0,
// Applies velocity to client side entities. Vanilla Minecraft does not do this
// despite the fact that entity position update packets also include velocity updates.
// Default value: true
"applyVelocity": true,
// A set of entities that will always have interpolation and never have client side velocity.
// This setting is useful in case any modded entities do not work nicely with Anti-Smooth.
// Default value: ["minecraft:item"]
"unaffectedEntities": [
"minecraft:item"
]
}
Версии
| Версия | Канал | Игра | Загрузчики | Дата | Скачать |
|---|---|---|---|---|---|
| 2.0.2-neoforge-26.1.2 | Релиз | 26.1, 26.1.1, 26.1.2, 26.2 | neoforge | 27 июня 2026 г. | .jar (26 КБ) |
| 2.0.2-neoforge-1.21.5 | Релиз | 1.21.8, 1.21.9, 1.21.10, 1.21.11 | neoforge | 27 июня 2026 г. | .jar (27 КБ) |
| 2.0.2-neoforge-1.21.1 | Релиз | 1.21.1, 1.21.2, 1.21.3, 1.21.4 | neoforge | 27 июня 2026 г. | .jar (26 КБ) |
| 2.0.2-fabric-26.1.2 | Релиз | 26.1, 26.1.1, 26.1.2, 26.2 | fabric | 27 июня 2026 г. | .jar (26 КБ) |
| 2.0.2-fabric-1.21.5 | Релиз | 1.21.8, 1.21.9, 1.21.10, 1.21.11 | fabric | 27 июня 2026 г. | .jar (26 КБ) |
| 2.0.2-fabric-1.20.1 | Релиз | 1.21.2, 1.21.3, 1.21.4, 1.21.5 | fabric | 27 июня 2026 г. | .jar (26 КБ) |
| 2.0.1-neoforge-26.1.2 | Релиз | 26.1, 26.1.1, 26.1.2, 26.2 | neoforge | 19 июня 2026 г. | .jar (24 КБ) |
| 2.0.1-fabric-26.1.2 | Релиз | 26.1, 26.1.1, 26.1.2, 26.2 | fabric | 19 июня 2026 г. | .jar (24 КБ) |
| 2.0.1-neoforge-1.21.5 | Релиз | 1.21.8, 1.21.9, 1.21.10, 1.21.11 | neoforge | 19 июня 2026 г. | .jar (25 КБ) |
| 2.0.1-fabric-1.21.5 | Релиз | 1.21.8, 1.21.9, 1.21.10, 1.21.11 | fabric | 19 июня 2026 г. | .jar (25 КБ) |
| 2.0.1-neoforge-1.21.1 | Релиз | 1.21.1, 1.21.2, 1.21.3, 1.21.4 | neoforge | 19 июня 2026 г. | .jar (24 КБ) |
| 2.0.1-fabric-1.20.1 | Релиз | 1.21.1, 1.21.2, 1.21.3, 1.21.4 | fabric | 19 июня 2026 г. | .jar (24 КБ) |
| 2.0.0-neoforge-26.1 | Релиз | 26.1, 26.1.1, 26.1.2, 26.2 | neoforge | 17 июня 2026 г. | .jar (23 КБ) |
| 2.0.0-fabric-26.1 | Релиз | 26.1, 26.1.1, 26.1.2, 26.2 | fabric | 17 июня 2026 г. | .jar (23 КБ) |
| 2.0.0-neoforge-1.21.5 | Релиз | 1.21.8, 1.21.9, 1.21.10, 1.21.11 | neoforge | 17 июня 2026 г. | .jar (23 КБ) |
Показаны последние 15 из 24 версий. Все версии — на Modrinth.
Ченджлог
2.0.2-neoforge-26.1.2Релиз26.1.1, 26.1.2, 26.2 · 27 июня 2026 г.
Changes
- Velocity no longer gets applied to leashed mobs in 1.21.6+
- This is due to mobs falling down and rubber banding whenever they are meant to be stationary
- Resolves #2, though admittedly the solution isn't very glamorous
- Added minecarts to the default list of unaffected entities
Fixes
- Fixed mobs clipping through walls by shrinking their hitboxes client-side during solid collision detection (Resolves #1)
2.0.2-neoforge-1.21.5Релиз1.21.9, 1.21.10, 1.21.11 · 27 июня 2026 г.
Changes
- Velocity no longer gets applied to leashed mobs in 1.21.6+
- This is due to mobs falling down and rubber banding whenever they are meant to be stationary
- Resolves #2, though admittedly the solution isn't very glamorous
- Added minecarts to the default list of unaffected entities
Fixes
- Fixed mobs clipping through walls by shrinking their hitboxes client-side during solid collision detection (Resolves #1)
2.0.2-neoforge-1.21.1Релиз1.21.2, 1.21.3, 1.21.4 · 27 июня 2026 г.
Changes
- Velocity no longer gets applied to leashed mobs in 1.21.6+
- This is due to mobs falling down and rubber banding whenever they are meant to be stationary
- Resolves #2, though admittedly the solution isn't very glamorous
- Added minecarts to the default list of unaffected entities
Fixes
- Fixed mobs clipping through walls by shrinking their hitboxes client-side during solid collision detection (Resolves #1)
2.0.2-fabric-26.1.2Релиз26.1.1, 26.1.2, 26.2 · 27 июня 2026 г.
Changes
- Velocity no longer gets applied to leashed mobs in 1.21.6+
- This is due to mobs falling down and rubber banding whenever they are meant to be stationary
- Resolves #2, though admittedly the solution isn't very glamorous
- Added minecarts to the default list of unaffected entities
Fixes
- Fixed mobs clipping through walls by shrinking their hitboxes client-side during solid collision detection (Resolves #1)
2.0.2-fabric-1.21.5Релиз1.21.9, 1.21.10, 1.21.11 · 27 июня 2026 г.
Changes
- Velocity no longer gets applied to leashed mobs in 1.21.6+
- This is due to mobs falling down and rubber banding whenever they are meant to be stationary
- Resolves #2, though admittedly the solution isn't very glamorous
- Added minecarts to the default list of unaffected entities
Fixes
- Fixed mobs clipping through walls by shrinking their hitboxes client-side during solid collision detection (Resolves #1)
2.0.2-fabric-1.20.1Релиз1.21.3, 1.21.4, 1.21.5 · 27 июня 2026 г.
Changes
- Velocity no longer gets applied to leashed mobs in 1.21.6+
- This is due to mobs falling down and rubber banding whenever they are meant to be stationary
- Resolves #2, though admittedly the solution isn't very glamorous
- Added minecarts to the default list of unaffected entities
Fixes
- Fixed mobs clipping through walls by shrinking their hitboxes client-side during solid collision detection (Resolves #1)
2.0.1-neoforge-26.1.2Релиз26.1.1, 26.1.2, 26.2 · 19 июня 2026 г.
Fixes
- Fixed support for Fabric 1.21.9-1.21.11
- Fixed support for NeoForge 1.21.11
2.0.1-fabric-26.1.2Релиз26.1.1, 26.1.2, 26.2 · 19 июня 2026 г.
Fixes
- Fixed support for Fabric 1.21.9-1.21.11
- Fixed support for NeoForge 1.21.11
Полная история изменений — на Modrinth.
Комментарии
Загружаем…