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

A Cat

Second Lieutenant
57 Badges
Dec 21, 2014
188
280
  • Crusader Kings II: Charlemagne
  • Victoria 2: Heart of Darkness
  • Victoria 2: A House Divided
  • Sword of the Stars
  • Victoria: Revolutions
  • Europa Universalis IV: Res Publica
  • Heir to the Throne
  • Europa Universalis IV: Call to arms event
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV
  • Europa Universalis III Complete
  • Europa Universalis III
  • Crusader Kings II: Sword of Islam
  • Europa Universalis IV: Art of War
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: The Old Gods
  • Crusader Kings II
  • Shadowrun: Dragonfall
  • Stellaris: Synthetic Dawn
  • Shadowrun Returns
  • Stellaris: Distant Stars
  • Stellaris: Apocalypse
  • Stellaris: Humanoids Species Pack
  • Crusader Kings II: Jade Dragon
  • Cities: Skylines - Green Cities
  • Age of Wonders III
  • Cities: Skylines Industries
  • Stellaris: Megacorp
  • Crusader Kings II: Holy Fury
  • Stellaris: Ancient Relics
  • Stellaris: Nemesis
  • Stellaris: Lithoids
  • Stellaris: Federations
  • Stellaris: Necroids
  • Crusader Kings III
  • Crusader Kings III: Royal Edition
  • Stellaris - Path to Destruction bundle
  • Europa Universalis III Complete
  • Europa Universalis III Complete
  • Victoria 2
  • Warlock: Master of the Arcane
  • Cities: Skylines
  • Europa Universalis IV: El Dorado
  • Crusader Kings II: Way of Life
  • Pillars of Eternity
  • Europa Universalis IV: Common Sense
  • Crusader Kings II: Conclave
  • Stellaris
  • Crusader Kings II: Reapers Due
Description
The Pacifier cannot target Hive worlds.

Game Version
3.1.2

What version do you use?
Paradox Launcher

What expansions do you have installed?
Synthetic Dawn, Utopia, Leviathans Story Pack, Apocalypse, Megacorp, Distant Stars, Ancient Relics, Lithoids, Federations, Nemesis

Do you have mods enabled?
Yes

Please explain your issue is in as much detail as possible.
The Pacifier Colossus cannot target Hive Worlds.

This is because the in the "...Stellaris/common/scripted_triggers/01_scripted_triggers_planet_killers.txt" file there is no "is_planet_class = pc_hive" line in "can_destroy_planet_with_PLANET_KILLER_SHIELDER" trigger.

Steps to reproduce the issue.
Attempt to use a Pacifier on a Hive World.

Upload Attachment
File(s) attached
 

Attachments

  • Screen shot of pacifier glitch.png
    Screen shot of pacifier glitch.png
    2 MB · Views: 0
  • 2495.11.30.sav
    3,7 MB · Views: 0
  • 1
Reactions:
Code:
is_a_habitable_planet_megastructure = {
    OR = {
        is_planet_class = pc_nuked
        is_planet_class = pc_infested
        habitable_planet = yes
        habitable_structure = yes
    }
}
Should probably be this instead:
Code:
is_a_habitable_planet_megastructure = {
    OR = {
        colonizable_planet = yes
        is_planet_class = pc_infested
    }
}

"colonizable_planet" is appropriate here I believe?
Code:
colonizable_planet = {
    OR = {
        is_planet_class = pc_city
        is_planet_class = pc_relic
        is_planet_class = pc_nuked
        is_planet_class = pc_hive
        is_planet_class = pc_machine
        habitable_structure = yes
        habitable_planet = yes
    }
}