Two quick things about the new release:
1) GAMEINFO included in rotwb.wad still states v1.1.
2) You still get the error "NJWaterSplashBase is not an Actor (in splash Water)". This is because there is no actor defined with that name anywhere in DECORATE. You only have
NJCoreSplashChunk and
NJWaterSplashChunk there. I figured that the correct definition for the TERRAIN lump must be this, then:
Code: Select all
splash Water
{
smallclass NJCoreSplashChunk
smallclip 12
smallsound world/watersplashsmall
baseclass NJCoreSplashChunk
chunkclass NJWaterSplashChunk
chunkxvelshift 8
chunkyvelshift 8
chunkzvelshift 8
chunkbasezvel 2
sound world/watersplash
NoAlert
}
So basically, replace both
NJWaterSplashBase entries in TERRAIN (smallclass/baseclass) with
NJCoreSplashChunk. That should get rid of the warning. (Alternatively, you could rename the
NJCoreSplashChunk entries in DECORATE to
NJWaterSplashBase, but in the end, it's the same thing.)