[1.1.69] Tooltips do not show source_effects AOE damage for fluid streams
Posted: Sun Oct 02, 2022 10:12 pm
I am making a custom fluid turret that does damage to things around the turret. The entity details on the right side do not show the damage even though show_in_tooltip is true/default. The turret does do damage even though it doesn't show up in the GUI.
Putting the damage inside of target_effects shows up as expected.
The fluid stream's "action" property:
Putting the damage inside of target_effects shows up as expected.
The fluid stream's "action" property:
Code: Select all
action = {
type = 'direct',
action_delivery = {
type = "instant",
source_effects = { {
type = 'nested-result',
action = {
type = "area",
radius = 2,
trigger_from_target = true,
target_entities = true,
force = 'enemy',
action_delivery = {
type = "instant",
target_effects = { {
type = "damage",
damage = { amount = 10, type = "physical" },
} }
}
}
}
},
},
},