deactivated name generator for performance, added interactive view changing

This commit is contained in:
luxick
2015-08-25 13:25:48 +02:00
parent dd28c63582
commit e82f89d689
2 changed files with 26 additions and 5 deletions

View File

@@ -8,7 +8,8 @@ from config import *
class Util:
def make_Tamagotchi(self):
name = names.get_last_name()
# name = names.get_last_name()
name = 'Gotchi'
hunger = random.randrange(min_stat,max_stat,1)
happiness = random.randrange(min_stat,max_stat,1)
hygiene = random.randrange(min_stat,max_stat,1)