Tarquelne's Modules for 3.17

Tarquelne

Follower of Tytalus
Joined
Dec 8, 2001
Messages
3,718
I just spot-checked a couple and they're working. That means they all might be fine!

But, this being the real world, I doubt they are *and* I don't want to have to go check them all myself.

So: Anyone encountered a problem?
 
tried elohim with salsa with latest FfH, no problem there, same with salt golem, but holy warriors give error in loading: something with incorrect spell.
 
Thanks! Fixed, new file uploaded.

It was the "Enervated" promotion on the Illrigger. Almost couldn't find the problem - the promotion is still in Fall Further.

If you want to avoid re-downloading you can open "HWilr_CIV4UnitInfos.xml"
in Assets/Modules/holywarriors/coe and remove:

Code:
                <FreePromotion>
                    <PromotionType>PROMOTION_ENERVATED</PromotionType>
                    <bFreePromotion>1</bFreePromotion>
                </FreePromotion>

from the free promotions section, making it look like this:

Code:
            <FreePromotions>
                <FreePromotion>
                    <PromotionType>PROMOTION_STEALTH</PromotionType>
                    <bFreePromotion>1</bFreePromotion>
                </FreePromotion>
                <FreePromotion>
                    <PromotionType>PROMOTION_UNDEAD</PromotionType>
                    <bFreePromotion>1</bFreePromotion>
                </FreePromotion> 
            </FreePromotions>
 
Top Bottom