Use spaces instead of 'x' for an inactive dialogue keyword

This commit is contained in:
2015-10-01 21:49:27 -04:00
parent ec867c9579
commit 0a97824033
4 changed files with 7 additions and 6 deletions

View File

@@ -43,8 +43,8 @@ public:
std::string str1, str2;
cNode() {
std::fill(extras, extras + 4, -1);
std::fill(link1, link1 + 4, 'x');
std::fill(link2, link2 + 4, 'x');
std::fill(link1, link1 + 4, ' ');
std::fill(link2, link2 + 4, ' ');
}
};
cPersonality people[10];