summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--conf/map/battle/pet.conf4
-rw-r--r--src/map/battle.c1
-rw-r--r--src/map/battle.h1
3 files changed, 0 insertions, 6 deletions
diff --git a/conf/map/battle/pet.conf b/conf/map/battle/pet.conf
index fa0057564..2aea861f9 100644
--- a/conf/map/battle/pet.conf
+++ b/conf/map/battle/pet.conf
@@ -44,10 +44,6 @@ pet_friendly_rate: 100
// The rate at which a pet will become hungry. (Note 2)
pet_hungry_delay_rate: 100
-// If your pet is hungry by how much will the friendlyness decrease by. (Default is 5)
-// Note: The friendlyness is 0-1000 total, at 0 the pet runs away.
-pet_hungry_friendly_decrease: 5
-
// Does the pet need its equipment before it does its skill? (Note 1)
pet_equip_required: true
diff --git a/src/map/battle.c b/src/map/battle.c
index 6519b1f37..7b3a4cbe2 100644
--- a/src/map/battle.c
+++ b/src/map/battle.c
@@ -7089,7 +7089,6 @@ static const struct battle_data {
{ "pet_rename", &battle_config.pet_rename, 0, 0, 1, },
{ "pet_friendly_rate", &battle_config.pet_friendly_rate, 100, 0, INT_MAX, },
{ "pet_hungry_delay_rate", &battle_config.pet_hungry_delay_rate, 100, 10, INT_MAX, },
- { "pet_hungry_friendly_decrease", &battle_config.pet_hungry_friendly_decrease, 5, 0, INT_MAX, },
{ "pet_status_support", &battle_config.pet_status_support, 0, 0, 1, },
{ "pet_attack_support", &battle_config.pet_attack_support, 0, 0, 1, },
{ "pet_damage_support", &battle_config.pet_damage_support, 0, 0, 1, },
diff --git a/src/map/battle.h b/src/map/battle.h
index 2e710f7f8..79d07af8e 100644
--- a/src/map/battle.h
+++ b/src/map/battle.h
@@ -216,7 +216,6 @@ struct Battle_Config {
int pet_rename;
int pet_friendly_rate;
int pet_hungry_delay_rate;
- int pet_hungry_friendly_decrease;
int pet_status_support;
int pet_attack_support;
int pet_damage_support;