Brightness and Region/Date of Birth every time I load the game.
Every time my wife and I load up V rising since the update we have to confirm Brightness, Region, date of birth... Tried deleting the appdata v4 to fix, still does it.
Comments: 3
Oldest
•
Newest
•
Most likes
•
Fewest likes
-
07 Jul, '25
EchelonHighlighted comment
Same thing happening to me, it's so nerve wracking that every time asks it. Another thing I noticed, it resets language and audio settings too. -
01 Aug, '25
AlbertinioHey, I solved the issue myself. Maybe the devs will see it too. Scroll to the bottom to see the solution. Technical details ahead.
The issue lies with how the game tries to parse a json config file and fails to do so because it expects a list and not a single element:
JsonSerializationException: Cannot deserialize the current JSON object (e.g. {"name":"value"}) into type 'System.Collections.Generic.List1[ProjectM.InterfaceSettings+ActionWheelSlotMapping]' because the type requires a JSON array (e.g. [1,2,3]) to deserialize correctly. [blah blah blah I can provide the full error log].
TO SOLVE IT:
Go to <your drive>:\Users\<your user>\AppData\LocalLow\Stunlock Studios\VRising\Settings\v4\ClientSettings.json
and change these two lines:
"ActionWheelShapeshiftAbility": {},
"ActionWheelEmoteAbility": {}
into these two lines:
"ActionWheelShapeshiftAbility": [],
"ActionWheelEmoteAbility": []
Good luck! Hope that solves the issue for you