diff --git a/LogixVisualCustomizer/SharedSettingsManager.cs b/LogixVisualCustomizer/SharedSettingsManager.cs index a14ea4e..ccd3bbc 100644 --- a/LogixVisualCustomizer/SharedSettingsManager.cs +++ b/LogixVisualCustomizer/SharedSettingsManager.cs @@ -126,7 +126,7 @@ public static void SetSharedValue(this World world, ModConfigurationKey co private static T createSharedComponent(this World world, string key) where T : Component, new() { var component = world.AssetsSlot.FindOrAdd(AssetsSlotName).AttachComponent(); - component.AssignKey(key); + component.AssignKey(key, 1); return component; }