Open leroyg opened 9 years ago
instead of
class ActorUnit < Robot
def change_name(new_name)
@name = (new_name)
end
end
You'll want to do assignment like the following. Excellent job!
class ActorUnit < Robot
def change_name(new_name)
@name = new_name
end
end
https://gist.github.com/leroyg/a4e28959bd33a38e26df