We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ababbf commit 1c43cbbCopy full SHA for 1c43cbb
garlicsim/garlicsim/general_misc/persistent/personality.py
@@ -37,7 +37,10 @@ def __init__(self, persistent):
37
38
u = int(persistent._CrossProcessPersistent__uuid)
39
40
- (u, human_name_seed) = divmod(u, 5494)
+ (u, human_name_seed) = divmod(
41
+ u,
42
+ len(human_names.name_list)
43
+ )
44
self.human_name = human_names.name_list[human_name_seed]
45
'''A human name. (e.g. "Jeffrey".)'''
46
0 commit comments