• Mods are now organized as resources. Use the Mods link above to browse for or submit a mod, tool, or prefab.

    The TFP Official Modding Forum Policy establishes the rules and guidelines for mod creators and mod users.

Getting hub rule is null after trying editing city type spawn chances

SonicSonedit

Refugee
So, I replaced

Code:
			<hub_rule name="townSmall" prob="0.3"/>
		<hub_rule name="townLarge" prob="0.3"/>
		<hub_rule name="citySmall" prob="0.1"/>
		<hub_rule name="cityLarge" prob="0.1"/>
		<hub_rule name="rural" prob="0.3"/>
with

Code:
			<hub_rule name="townSmall" prob="0.1"/>
		<hub_rule name="townLarge" prob="0.1"/>
		<hub_rule name="citySmall" prob="0.1"/>
		<hub_rule name="cityLarge" prob="0.5"/>
		<hub_rule name="rural" prob="0.3"/>
And now get "Hub rule is Null" expcetion while generating map with rwgviewer. Can anyone give me a hint why please?

 
Back
Top