Information
I have verifed my game files (Steam only)
YesI have disabled all mods
YesI am running the latest game update
YesRequired
Summary
The hunt_create_trophy_effect Blocks Falcony Hunts from Creating Trinkets Based on HaresDescription
I noticed in the code the hunt_create_trophy_effect has a random_list which one of the outcomes is create a trinket artifact. In the trigger it both makes sure a falconry hunt's animal is a hare and outright blocks falconry hunts. This means falconry hunts cannot produce trinkets based on hares with this effect. That's especially bad as currently no option in this random list is valid for a falconry hunt going after a hare. It seems to me the blocking of falconry hunts completely in this trigger should be removed.
Code:
5 = { # Create Trinket
trigger = {
scope:activity = { # Must be hare if Falconry
trigger_if = {
limit = {
has_activity_option = { category = special_type option = hunt_type_falconry }
}
var:animal_type = flag:hare
}
NAND = {
hunt_activity_deer_game_trigger = { VAR = var:animal_type }
exists = scope:activity.var:female_quarry
}
NOT = {
has_activity_option = { category = special_type option = hunt_type_falconry }
}
}
}
create_artifact_animal_trinket_effect = {
OWNER = root
HUNTER = scope:animal_slayer
LEGENDARY = no
ANIMAL = scope:activity.var:animal_type
}
}
Steps to reproduce
Open file 00_hunt_effects.txt and check out line 3659-3664 and 3669-3671Game Version
1.9.2.1Platform
WindowsAdditional Information
Affected Feature
- Events
Save Game
Other Attachments
- 1