This commit is contained in:
Simon Lübeß
2024-04-08 19:19:16 +02:00
parent d972e9c6c7
commit 630e9d96de
2 changed files with 6 additions and 2 deletions

View File

@ -237,7 +237,7 @@ public class Developer : MonoBehaviour
_happiness += 0.2;
}
_urgeToUrinateLevel -= caffeineAmount / 0.5f;
_urgeToUrinateLevel -= caffeineAmount / 2.0;
_wantedDrink = WantedConsumable.None;
}
@ -272,7 +272,7 @@ public class Developer : MonoBehaviour
_happiness += 0.2;
}
_urgeToUrinateLevel -= foodAmount / 0.5f;
_urgeToUrinateLevel -= foodAmount / 2.0;
_wantedFood = WantedConsumable.None;
}