I get conflicting messages from Bannerlord. On one hand we have a feature to continue playing as an heir, which would indicate that the plan was for us to spend a lot of time on a single save, but on the other hand, it looks like no effort was really put in on anything past early game, I end up abandoning saves before getting to experience the heir feature as I get bored by fighting AI lords over and over again.
It would give me some peace of mind if they said they planned to focus development on adding stuff for early, then mid and then work on late game activities.
As for feature complete, we have no way of knowing what TaleWorlds considers feature complete, we only get a list for what they will work on during this cycle (Statement for Single Player thread).
Yeah, I agree with everything in your post. Thanks for the reply.
I'm just a bit worried with the 'hard coding' of parts of bannerlord - Mods can and should save the game - but Taleworlds need to let that happen.
On the hard code complaint, there is some stuff that it would be nice to have a proper way of doing, instead of finding a work around, like custom skeletons for races other than human and there is poorly written code and parts of code that aren't easily accessible, but it does not make modding impossible, it just requires
a lot more work and the bigger the changes the more fragile they are to changes in code.
As an example of what I meant, some time ago I was looking into replacing troops equipment and I found out that copying the entry that defined a soldier and changing its equipment wasn't enough, it wouldn't prevent the previous equipment from being loaded and it would mix both my changes and the default. If I wanted only my version to be considered, I would have to find where it was being loaded and rewrite that part of the code to clear the equipment list before adding mine. It worked but rewriting it was annoying because there was plenty of poorly written code (like variables with undescriptive names such as flag1, flag2, node1, node2) and I had to make sure it was working exactly as the original plus + changes. One or two patches later they changed the format and code for equipment and I would have to do the same thing over again.