MrFlibble wrote:
(..)
Does this mean the original game can be modified so that buildings on slabs won't decay at all, while those built on incomplete foundations or without any foundations at all will decay?
Yes. You only have to NOP a few instructions. Sadly, I can't tell you where, as the locations in OpenDUNE are already relocated, and do not represent any sane position inside the executable.
If I have to make a guess, and based on information I can recover, you will have to search for:
C4 5E 06 ; les bx, [bp+06]
26 81 4F 04 00 04 ; or es:[bx+4],0400
C4 5E FC ; les bx, [bp-04]
And you will need to NOP (= 0x90) the second line (for all 6 bytes). Or you can search only for the second line, and then it is most likely the second hit. Of course all references in Dune 1.07eu version

Let me know if it works
