Longhouse 2.0.2
10 September 2026. After 2.0.1.
Repins Core to 1.2.2 and moves the BepInEx dependency to 5.4.2350.
Fixed
- A fifteen row inventory on the first login after the update. Valheim 1.0.7 only asserts
the row count for a character that already carries an
invrowskey, and writes the key without asserting anything for one that does not. Every character made before 1.0 is in that state exactly once, on its first 1.0 login, so Core never learned the real height and the grid came up fifteen tall. Nothing could be lost - the eviction fence held - and it cleared itself on the next login, but it was alarming and it was going to happen to everybody once. Core 1.2.2 learns the height on that login too.
Changed
- BepInEx dependency 5.4.2333 -> 5.4.2350. 5.4.2333 predates Valheim 1.0; denikson rebuilt the pack for 1.0 on the day it shipped. Harmony is 2.9 in both, so nothing about how these mods patch the game changes.
What moved · 1
Core 1.2.1 → 1.2.2
1.2.2
Fixed
A character logging into 1.0 for the first time came up with a fifteen row inventory. Valheim 1.0.7's
Player.OnSpawnedonly callsSetInventorySizewhen the character already carries aninvrowskey, and otherwise just writes the key and returns. Every character made before 1.0 takes that second branch exactly once, on its first 1.0 login, so the prefix that learns vanilla's row count never fired and the baseline stayed at -1. The load-time widening then added its sixteen rows of working space to that -1 and the grid came up fifteen tall, after which the fallback measured the widened grid and adopted fifteen as vanilla's own height.Two changes.
Player.OnSpawnednow has a postfix that readsinvrowsback and learns the baseline from it, which is correct on both branches rather than only the broken one: on the else branch it returns the 4 vanilla just wrote, and on the other oneRestorehas already put the true base back into that key, so it is a no-op. And the widening now works from a height that exists rather than from an unlearned baseline, with the pre-widening height kept so the fallback can no longer measure the working space and mistake it for the inventory.No items were ever at risk - the eviction fence in
VanillaRowsDropholds the grid at whatever rows are occupied, and it did. The condition also clears itself on the next login, because vanilla wrote the key on the way through. It was wrong and alarming rather than destructive.Found on the live server an hour after updating it, reported as "i logged in and i have a 15 row inventory". Fifteen is
LoadSlack - 1, which is what identified it.
discussPlayer.OnSpawnedis now inCorePlugin.Verify's list, so a future failure to attach that patch is named at startup instead of showing up as a strange row count.
Discussion
Nothing said yet.
Sign in or make an account to join in.