random talk

This commit is contained in:
2024-04-09 10:30:34 +02:00
parent 21c2cc101a
commit 0ebb8af771
2 changed files with 22 additions and 2 deletions

View File

@ -50,7 +50,7 @@ public class Developer : MonoBehaviour
private DeveloperStats _baseStats = DeveloperStats.Default;
[SerializeField]
private float _talkRange = 2.0f;
private float _talkRange = 3.0f;
[Header("Aktuelle Informationen")]
[SerializeField, ShowOnly]
@ -420,7 +420,7 @@ public class Developer : MonoBehaviour
{
if (!_hasTalkedBeforeSleeping)
{
Talk("The Developer is very sleepy right now duo to a lack of caffeine, The Developer takes a nap now", 0, true);
Talk("The Developer is very sleepy right now duo to a lack of caffeine, The Developer informs Gottfried that he will do a short nap any time soon", 0, true);
_privateContextBuffer.Add($"The developer took a refreshing nap but is annoyed that Gottfried forgot to bring him any caffeine before the nap");
_hasTalkedBeforeSleeping = true;
}