8
sak96
6y

class Bug():

def __init__():
self._fix = random.randint(1, 6)

def fix():
if self.is_feature :
return Feature(self)
else:
if random.randint(1, 6) == self._fix:
Bug()
del self
else:
return Bug()

Comments
Add Comment