mirror of
https://github.com/NotAKidoS/NAK_CVR_Mods.git
synced 2025-09-02 14:29:25 +00:00
Don't send AAS while switching avatar.
Don't send AAS while switching avatar. This should mean I am less likely to load into the wrong states while switching if others load me faster. This does mean though that it is more likely that remote users will apply null buffers forcing all 0/false instead of garbage aas, but its at least kind of a mitigation. There is a possibility syncing garbage data is better than syncing nothing at all, as that does give the chance to apply settings that don't immediatly load in naked. This just requires testing...
This commit is contained in:
parent
495a3b33fd
commit
9332b06d06
6 changed files with 69 additions and 52 deletions
|
@ -1,5 +1,5 @@
|
|||
using NAK.Melons.AASBufferFix.Properties;
|
||||
using MelonLoader;
|
||||
using MelonLoader;
|
||||
using NAK.Melons.AASBufferFix.Properties;
|
||||
using System.Reflection;
|
||||
|
||||
|
||||
|
@ -11,7 +11,7 @@ using System.Reflection;
|
|||
[assembly: AssemblyProduct(nameof(NAK.Melons.AASBufferFix))]
|
||||
|
||||
[assembly: MelonInfo(
|
||||
typeof(NAK.Melons.AASBufferFix.AASBufferFixMod),
|
||||
typeof(NAK.Melons.AASBufferFix.AASBufferFix),
|
||||
nameof(NAK.Melons.AASBufferFix),
|
||||
AssemblyInfoParams.Version,
|
||||
AssemblyInfoParams.Author,
|
||||
|
@ -25,6 +25,6 @@ using System.Reflection;
|
|||
namespace NAK.Melons.AASBufferFix.Properties;
|
||||
internal static class AssemblyInfoParams
|
||||
{
|
||||
public const string Version = "1.0.4";
|
||||
public const string Version = "1.0.5";
|
||||
public const string Author = "NotAKidoS";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue