Skip to content

Commit

Permalink
keep the original timer value
Browse files Browse the repository at this point in the history
  • Loading branch information
Razish committed Mar 3, 2024
1 parent 65fe84a commit 3b93584
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/game/NPC_behavior.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1745,7 +1745,7 @@ qboolean NPC_BSFlee( void )
NPCInfo->goalEntity = foundWeap; // Change Our Target Goal
NPCInfo->goalRadius = 30.0f; // 30 good enough?

TIMER_Set(NPC, "CheckForWeaponToPickup", Q_irand(1000, 5000));
TIMER_Set(NPC, "CheckForWeaponToPickup", Q_irand(1000, 5000) * 10);
}

// Look Again Soon
Expand Down

0 comments on commit 3b93584

Please sign in to comment.