/**
* Put the character in another room
* @param current the room where you want to put him
*/
public void moveRandom() {
Room choosen = currentRoom;
int cpt = 0, maxLight = 0;
// Find the brightest room (i.e. find the player if the monster sees the light).
for (Room r : accessibleRooms)
{