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

@ -27898,6 +27898,10 @@ PrefabInstance:
propertyPath: _player
value:
objectReference: {fileID: 1573807344}
- target: {fileID: 3650884189301972455, guid: e1e33f0b2075b5c40817665dd8a86f31, type: 3}
propertyPath: Needs.Array.size
value: 4
objectReference: {fileID: 0}
- target: {fileID: 3650884189301972455, guid: e1e33f0b2075b5c40817665dd8a86f31, type: 3}
propertyPath: _developers.Array.size
value: 4

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;
}