We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd70b11 commit 4e3ee01Copy full SHA for 4e3ee01
1 file changed
game/world/objects/npc.cpp
@@ -2117,8 +2117,6 @@ void Npc::nextAiAction(AiQueue& queue, uint64_t dt) {
2117
case AI_StandUpQuick:
2118
// NOTE: B_ASSESSTALK calls AI_StandUp, to make npc stand, if it's not on a chair or something
2119
if(interactive()!=nullptr) {
2120
- // if(interactive()->stateMask()==BS_SIT)
2121
- // ;
2122
if(!setInteraction(nullptr,false)) {
2123
queue.pushFront(std::move(act));
2124
}
@@ -2291,7 +2289,7 @@ void Npc::nextAiAction(AiQueue& queue, uint64_t dt) {
2291
2289
break;
2292
2290
2293
case AI_ProcessInfo: {
2294
- const int PERC_DIST_DIALOG = 500;
+ const int PERC_DIST_DIALOG = 2000;
2295
2296
if(act.target==nullptr)
2297
0 commit comments