• 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.

nachinus

Homo ludens
74 Badges
Dec 27, 2002
6.582
3.128
  • Hearts of Iron IV: Cadet
  • Age of Wonders III
  • Stellaris: Synthetic Dawn
  • Hearts of Iron IV: Death or Dishonor
  • BATTLETECH
  • Stellaris - Path to Destruction bundle
  • Hearts of Iron IV: Together for Victory
  • Stellaris: Leviathans Story Pack
  • Tyranny: Archon Edition
  • Europa Universalis IV: Rights of Man
  • Hearts of Iron IV: Expansion Pass
  • Stellaris Sign-up
  • Stellaris
  • Europa Universalis IV: Mare Nostrum
  • Achtung Panzer
  • Crusader Kings II: Conclave
  • Cities: Skylines - After Dark
  • Europa Universalis IV: Common Sense
  • Pillars of Eternity
  • Hearts of Iron IV: Expansion Pass
  • Battle for Bosporus
  • Crusader Kings III: Royal Edition
  • Crusader Kings III
  • Imperator: Rome - Magna Graecia
  • Stellaris: Federations
  • BATTLETECH: Season pass
  • Imperator: Rome Sign Up
  • Prison Architect
  • Crusader Kings II: Way of Life
  • Imperator: Rome
  • Imperator: Rome Deluxe Edition
  • BATTLETECH: Flashpoint
  • Shadowrun: Dragonfall
  • Shadowrun Returns
  • Stellaris: Distant Stars
  • Cities: Skylines - Parklife
  • Stellaris: Apocalypse
  • Europa Universalis III
  • Hearts of Iron III: Their Finest Hour
  • Hearts of Iron III
  • For the Motherland
  • Europa Universalis IV: Call to arms event
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis IV: Art of War
  • Europa Universalis IV
  • Divine Wind
  • Europa Universalis III Complete
  • Heir to the Throne
  • East India Company
  • Deus Vult
Toying with the triggered_modifiers.txt file I found out that there is 2 entries for mediterranean breadbasket, one in singular and another in plural. Both are one after the other so it's easy to spot:

Code:
mediterranean_breadbasket = {
	trigger = {
		not = { owns = 100 }	# Syracusae
		not = { owns = 101 }	# Panormus
		not = { owns = 102 }	# Sardinia
		owns = 247	# Carthage
		controls = 247
		owns = 225	# Alexandria
		controls = 225
	}
	global_tax_modifier = 0.05
	icon = 9
}

mediterranean_breadbaskets = {
	trigger = {
		or = {
			owns = 100	# Syracusae
			owns = 101	# Panormus
			owns = 102	# Sardinia
		}
		owns = 247	# Carthage
		controls = 247
		owns = 225	# Alexandria
		controls = 225
	}
	global_tax_modifier = 0.05
	icon = 9
}
 
Upvote 0