- Fixed network synchro of vars, needs synctype testing.

This commit is contained in:
MapleWheels
2026-04-09 05:34:50 -04:00
parent 84cb7cfeb7
commit ef66d27ffe
22 changed files with 115 additions and 23 deletions
@@ -91,7 +91,11 @@ public class SettingList<T> : SettingEntry<T>, ISettingList<T> where T : IEquata
public bool TrySetValueByIndex(int index)
{
throw new NotImplementedException();
if (_valuesList.Count <= index)
{
return false;
}
return base.TrySetValue(_valuesList[index]);
}
public IReadOnlyList<T> Options => _valuesList.AsReadOnly();