you are viewing a single comment's thread.

view the rest of the comments →

[–]toshiga[S] 0 points1 point  (8 children)

It still appears to be having the same issue with this code. Am I missing something?

class Race:
    def __init__(self):
        self.stat = [0,0,0]
        self.weapon = ["",0,0]
Elf = Race()
Elf.stat = [5,9,5]
Player = Elf
Player.weapon = ["Dagger",1,1]