[Beta v1.10.0] Modify Villager Reputation doesn't seem to work as intended.
Clark919 opened this issue ยท 5 comments
moborigins:modify_villager_reputation
does not work as shown in the example in the Wiki from what I've tested. Here is the snippet of code I am using to call the power:
"positive_renown_reputation": {
"type": "moborigins:modify_villager_reputation",
"modifier": {
"operation": "addition",
"value": 70.0
},
"bientity_condition": {
"type": "origins:actor_condition",
"condition": {
"type": "origins:resource",
"resource": "origination:knight/renown_renown_resource",
"comparison": ">=",
"compare_to": 125
}
}
},
The power registers fine (it is part of origins:multiple
, so ignore the incorrect syntax), and the condition is correct, with the resource active in-game. However whatever value I attempt to enter will not change the prices of Villagers whatsoever.
For further context, the only other mods I have installed that would potentially conflict with this function are Numismatic Overhaul and Liberty's Villagers, but from what I can tell their features shouldn't modify Villager Gossip.
This leads me to believe the power isn't working, unless I'm absolutely missing something.
Works perfectly, thanks. Any plans to swap the Actor and Target around? Or will you just update the Wiki?
Okay, I think I've figured out the issue. The wiki has it swapped. Your power should work if its you swap the actor condition to a target condition.
Okay, I think I've figured out the issue. The wiki has it swapped. Your power should work if its you swap the actor condition to a target condition.
I'll give this a go when I get an opportunity and get back to you.