
Originally Posted by
Julio85
I hope in the versions before 2,3 the Parthian reform still works properly!

It's easy to fix in your copy of 2.3, if you're willing to start a new campaign for it to take effect. Open the campaign_script with Notepad++ (NOT Windows Notepad, it will corrupt the file). Find this section:
Code:
monitor_event SettlementTurnStart SettlementName sett_131 ;;; count developed farms in relevant city - Asaak
and SettlementBuildingExists > farms_three
inc_counter parthia_agriculture_development 1
terminate_monitor
end_monitor
And replace with:
Code:
monitor_event SettlementTurnStart SettlementName sett_131 ;;; count developed farms in relevant city - Asaak
and SettlementBuildingExists > pastfarms_five ;;; pastfarms_six (large scale pastoral) is equiv of farms_four (large scale)
inc_counter parthia_agriculture_development 1
terminate_monitor
end_monitor