From 2ca99066776cfb4a7a048b5819e459a0271b556e Mon Sep 17 00:00:00 2001 From: _Nyu Date: Mon, 3 Sep 2018 01:45:20 +0200 Subject: [PATCH] fixing encoding error causing problem to clang --- Source/SevenStars/NPC.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/SevenStars/NPC.cpp b/Source/SevenStars/NPC.cpp index 6043189..fed3b7e 100644 --- a/Source/SevenStars/NPC.cpp +++ b/Source/SevenStars/NPC.cpp @@ -279,8 +279,8 @@ void ANPC::BeginPlay() ZyxelState1_1.Add("They're absolutely gorgeous."); ZyxelState1_1.Add("These statues appease my mind. Don't ask me why. They just do."); - ZyxelState2_0.Add("Well, now that you have changed everything, there is no way back. Let's face reality…"); - ZyxelState2_1.Add("Actually, I made those statues when I was younger. Things where different back then…"); + ZyxelState2_0.Add("Well, now that you have changed everything, there is no way back. Let's face reality..."); + ZyxelState2_1.Add("Actually, I made those statues when I was younger. Things where different back then..."); ArthrumState0_0.Add("It is the train."); @@ -341,11 +341,11 @@ void ANPC::BeginPlay() NaioliState2_1.Add("Going outside? That sounds like a bad idea. Is there something outside? Should we care? Should we even know? I'm not sure I can follow you."); NaioliState2_1.Add("Is the outside some concept we can grasp? Is it even worth considering?"); - NaioliState2_1.Add("What if there's no outside? Would there still be an inside, then? What is the point of anything? Sure, it was easier not asking myself this, but…"); + NaioliState2_1.Add("What if there's no outside? Would there still be an inside, then? What is the point of anything? Sure, it was easier not asking myself this, but..."); NaioliState2_1.Add("I'm not sure what I should do or think anymore."); } void ANPC::Tick(float DeltaTime) { Super::Tick(DeltaTime); -} \ No newline at end of file +}