- Made some improvements that allow sound packs to be more accurate (e.g. less missed/misfired weapon hit sounds)
- Modules other than the scanners are now updated every tick rather than every other tick
- Ticking is now done on client ticks, rather than on the first render tick following a client tick
ply_action
.swinging
is now set on the same tick the player clicks (which is one tick earlier than before), and stays on as long as the player is digging or spam clicking- Fixed sqrt values in
ply_motion
being 1000 times smaller than intended - (1.7) Fixed
legacy_hitscan
module using a wrong Y coordinate. (Fixesmat_default2016-1.2.1
playing whack sounds when clicking a vanilla chest with a sword.)
- Greatly reduced default log verbosity. Log messages are now split into four groups:
- Essential messages. Always visible.
- Soundpack-related messages. Visible when in dev/editor mode, or when the
-Dmatmos.log.soundpack=true
JVM flag is set. - Alias map-related messages. Visible when the
log.category.aliasmap
config option is enabled. - Messages used for debugging MAtmos itself. Visible when the
-Dmatmos.log.engine=true
JVM flag is set.
- Removed the configvars module (which created
dataconfigvars.cfg
), since it was unused and seemingly broken since its inception.
- Fixed crash when initializing config that happened on some systems
Build changes
Versions that do not embed Mixin are now also provided (their file names end with +nomixin
). Using these versions can solve compatibility issues that can arise when using Mixin bootstrap mods such as MixinBooter.
-mixin0.7
versions are no longer provided, since using +nomixin
versions should fix the same issue they did.
- Added config option for changing the number of sound system channels.
- Increased the default number of normal (sound effect) channels from 21 to 53
- MAtmos will now preserve the values set by other mods that change the number of sound system channels (e.g. Dynamic Surroundings, ExtendPolyphonyLimit).
- Added some missing blocks to the TFC+ alias map (Thanks facetorched! Also thanks to RollerMobster for helping with the previous TFC+ alias map, who I forgot to credit in the changelog back then.)
- Fixed crash when returning to the MAtmos GUI from the resource packs screen (this happened when MAtmos was started with no sound packs enabled, and the resource pack screen was entered using the button in the MAtmos GUI)
- Fixed sound effects not respecting expansion volume (this happened with the Zen 2020: Sound effects expansion)
- (1.12) Fixed empty item stacks not getting detected properly. This caused item switch sounds to re-trigger when switching between empty hotbar slots.
- Optimized various things under the hood, like the 1.7.10 version's tick handler running twice per tick due to a mistake. Tick time has been reduced from 4.77% to 1.69% on that version according to LagGoggles - almost one third of the previous value.
- Removed MAtmos from the F3 profiler pie chart, since the results there were inaccurate and misleading. A simple tick profiler was added instead, which prints tick times to the log. It is disabled by default, and can be activated via the
-Dmatmos.tickProfiler=true
JVM flag.