lengthened rank threshold

This commit is contained in:
Todd Gruben 2014-12-01 17:11:54 +00:00
parent 906e05d780
commit 35fb817a68

View file

@ -204,7 +204,7 @@ func (self *Brand) checkRank() {
self.Rank()
} else if self.rank_count > 0 {
last := time.Since(self.rank_time) * time.Second
if last > 60 {
if last > 60*5 {
self.Rank()
}
}