diff --git a/OrekiWoofsBeehives/Config.cs b/OrekiWoofsBeehives/Config.cs index c21dc48..1c08c6d 100644 --- a/OrekiWoofsBeehives/Config.cs +++ b/OrekiWoofsBeehives/Config.cs @@ -164,7 +164,7 @@ public class Config // client-side [ProtoMember(29)] [ConfigCommand(serverSide: false, Min = 0, Max = 4)] - public int InformationVerbosity { get; set; } = 1; + public int InformationVerbosity { get; set; } = 2; [ProtoMember(44)] [ConfigCommand(serverSide: false)] diff --git a/OrekiWoofsBeehives/assets/orekiwoofsbeehives/config/configlib-patches.json b/OrekiWoofsBeehives/assets/orekiwoofsbeehives/config/configlib-patches.json index 3c8c77b..a3f587f 100644 --- a/OrekiWoofsBeehives/assets/orekiwoofsbeehives/config/configlib-patches.json +++ b/OrekiWoofsBeehives/assets/orekiwoofsbeehives/config/configlib-patches.json @@ -11,7 +11,7 @@ "code": "InformationVerbosity", "comment": "config-desc-InformationVerbosity", "type": "int", - "default": 1, + "default": 2, "range": { "min": 0, "max": 4 diff --git a/TestScenarios/ConfigScenarios.md b/TestScenarios/ConfigScenarios.md index b6c1efb..1e0b056 100644 --- a/TestScenarios/ConfigScenarios.md +++ b/TestScenarios/ConfigScenarios.md @@ -2,8 +2,8 @@ ## 1) ClientSide mode - Server: `InformationVerbosityServerSideType=ClientSide`, `InformationVerbosityServer=4` -- Client: `InformationVerbosity=1` -- Expected: client uses `1` +- Client: `InformationVerbosity=2` +- Expected: client uses `2` ## 2) ServerRecommended mode (override OFF) - Server: `InformationVerbosityServerSideType=ServerRecommended`, `InformationVerbosityServer=4` @@ -12,11 +12,11 @@ ## 3) ServerRecommended mode (override ON) - Same as above, but `DisableServerRecommended=true` -- Expected: client uses `1` +- Expected: client uses `2` ## 4) ServerForced mode - Server: `InformationVerbosityServerSideType=ServerForced`, `InformationVerbosityServer=4` -- Client: `InformationVerbosity=1`, `DisableServerRecommended=true` +- Client: `InformationVerbosity=2`, `DisableServerRecommended=true` - Expected: client uses `4` ## 5) Client-side settings stay client-side