Method: Core::Game::Character#wake

Defined in:
lib/game/character.rb

#wakeObject



81
82
83
84
85
86
# File 'lib/game/character.rb', line 81

def wake
  if @state != Core::Game::DEAD
    @state = Core::Game::NORMAL
    calc_status
  end
end