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

aono

Field Marshal
114 Badges
Aug 26, 2008
4.066
3.600
  • Cities in Motion
  • Europa Universalis 4: Emperor
  • Stellaris: Necroids
  • Stellaris: Nemesis
  • Victoria 3 Sign Up
  • Hearts of Iron IV: By Blood Alone
  • Hearts of Iron IV: No Step Back
  • Hearts of Iron IV Sign-up
  • Knights of Pen and Paper 2
  • Prison Architect
  • Prison Architect: Psych Ward
  • Stellaris: Federations
  • Europa Universalis IV
  • Battle for Bosporus
  • Island Bound
  • Crusader Kings II
  • Crusader Kings II: Charlemagne
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: The Republic
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: Sunset Invasion
  • Crusader Kings II: Sword of Islam
  • Europa Universalis III
  • Europa Universalis III: Chronicles
  • Divine Wind
  • Europa Universalis IV: Art of War
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Wealth of Nations
  • For the Motherland
  • Hearts of Iron III
  • Hearts of Iron III: Their Finest Hour
  • Hearts of Iron III Collection
  • Heir to the Throne
  • Europa Universalis IV: Res Publica
  • Victoria: Revolutions
  • Stellaris: Megacorp
  • Stellaris: Ancient Relics
  • Semper Fi
  • Victoria 2: A House Divided
  • Victoria 2: Heart of Darkness
  • Rome: Vae Victis
  • Europa Universalis IV: Pre-order
  • Cities: Skylines - After Dark
  • Europa Universalis IV: Cossacks
  • Cities: Skylines - Snowfall
  • Europa Universalis IV: Mare Nostrum
  • Stellaris
  • Stellaris: Galaxy Edition
One line summary of your issue
History entries for Wonders work incorrectly

Game Version
3.1.0

What expansions do you have installed?
All of the above

Do you have mods enabled?
No

Please explain your issue is in as much detail as possible.
History entries for Wonders apply on the start of game, no matter when they should happen.
For example, Mausoleum at Halicarnassus shouldn't be damaged until 13th century, and indeed history file for Lykia shows so:
Code:
# Exact destruction date unknown, probably between 1200-1300, probably by earthquake
1200 = {
	set_wonder_stage = 2
	destroy_wonder_upgrade = upgrade_quadriga_statue
	set_wonder_damaged = yes
}

Still, at the start of the game it's level 2 (not 4), statue is destroyed and building is looted.

I tried to do modded wonder with history, and pattern was repeated - if I added entries for wonder into history file, it came in a state that supposed to happen after the last entry.

Steps to reproduce the issue.
1. Load a game at any game date before 1200.
2. Check Mausoleum at Halicarnassus wonder.

Upload Attachment
 
Upvote 0
UPD:
Looks like it's a problem with date format.

It's working as described above with
Code:
1204 = {
    set_wonder_stage = 1
    set_wonder_damaged = yes
}

Still, with:
Code:
1204.5.16 = { 
    set_wonder_stage = 1
    set_wonder_damaged = yes
}
...everything working ok.

Same with Lykia.
Working:
Code:
1200.1.1= {
    set_wonder_stage = 2
    destroy_wonder_upgrade = upgrade_quadriga_statue
    set_wonder_damaged = yes
}

Not working (vanilla):
Code:
1200 = {
    set_wonder_stage = 2
    destroy_wonder_upgrade = upgrade_quadriga_statue
    set_wonder_damaged = yes
}