stop hudcache updating again when importing duplicate hands

This commit is contained in:
sqlcoder
2010-02-20 17:49:03 +00:00
parent ebf2205859
commit 141b88ecfd
2 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -456,7 +456,7 @@ class Importer:
# FIXME: Need to test for bulk import that isn't rebuilding the cache
if self.callHud:
for hand in handlist:
if hand is not None:
if hand is not None and not hand.is_duplicate:
hand.updateHudCache(self.database)
self.database.commit()