Mercurial > parpg-source
changeset 138:90ad38b00f13
Fix to decrease the wander rate of the npcs.
author | KarstenBock@gmx.net |
---|---|
date | Sun, 09 Oct 2011 14:29:02 +0200 |
parents | 53faff63037f |
children | dd7655eee67d |
files | behaviours/npc.py |
diffstat | 1 files changed, 4 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/behaviours/npc.py Sun Oct 09 14:03:25 2011 +0200 +++ b/behaviours/npc.py Sun Oct 09 14:29:02 2011 +0200 @@ -36,8 +36,11 @@ # wander rate is the number of "IDLEs" before a wander step # this could be set for individual NPCs at load time # or thrown out altogether. + # HACK: 09.Oct.2011 Beliar + # I increased the wander rate to 900 since the idle method + # gets called way more often now. self.wanderCounter = 0 - self.wanderRate = 9 + self.wanderRate = 900 def getTargetLocation(self): """@rtype: fife.Location