Commit to "tameness" name over "closeness" for pets, fix scripts

This commit is contained in:
P0nk
2022-09-15 17:12:21 +02:00
parent 125d0aa03d
commit 1a28fc98ac
11 changed files with 18 additions and 18 deletions

View File

@@ -340,10 +340,10 @@ public class NPCConversationManager extends AbstractPlayerInteraction {
getClient().getChannelServer().getMapFactory().getMap(mapid).resetReactors();
}
public void gainCloseness(int closeness) {
public void gainTameness(int tameness) {
for (Pet pet : getPlayer().getPets()) {
if (pet != null) {
pet.gainClosenessFullness(getPlayer(), closeness, 0, 0);
pet.gainTamenessFullness(getPlayer(), tameness, 0, 0);
}
}
}