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.
This is my suggested fix.
Hope this helps.
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