• We have updated our Community Code of Conduct. Please read through the new rules for the forum that are an integral part of Paradox Interactive’s User Agreement.

unmerged(14102)

Field Marshal
Jan 27, 2003
5.515
0
Visit site
The following event in randomevents.txt appears to have an error. type = manpower does not appear to be a legitimate value. The event has no effect as written. According to the event commands.txt list the proper value is type = manpowerpool. Manpower is an HOI value, so I think just a minor typo.

Code:
event = {
	id = 24034
	random = yes
	trigger = {
#			atwar = yes
			constitution = { type = democracy }
#			year = 1900
	}

	name = "EVT_24034_NAME"
	desc = "EVT_24034_DESC"
	style = 0

	action_a = {
		name = "OK"
		command = { type = manpower value = 100 }
	}
}

This is my suggested fix.

Code:
event = {
	id = 24034
	random = yes
	trigger = {
#			atwar = yes
			constitution = { type = democracy }
#			year = 1900
	}

	name = "EVT_24034_NAME"
	desc = "EVT_24034_DESC"
	style = 0

	action_a = {
		name = "OK"
		command = { type = manpowerpool value = 100 }
	}
}

Hope this helps.
 
Upvote 0