Skip to content

Commit

Permalink
change default direction to south
Browse files Browse the repository at this point in the history
  • Loading branch information
Zbizu committed Feb 19, 2023
1 parent b4ef9bc commit d0dcc29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/creature.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@

#include "creature.h"

Creature::Creature(CreatureType* ctype) : direction(NORTH), spawntime(0), saved(false), selected(false)
Creature::Creature(CreatureType* ctype) : direction(SOUTH), spawntime(0), saved(false), selected(false)
{
if(ctype)
type_name = ctype->name;
}

Creature::Creature(std::string ctype_name) : type_name(ctype_name), direction(NORTH), spawntime(0), saved(false), selected(false)
Creature::Creature(std::string ctype_name) : type_name(ctype_name), direction(SOUTH), spawntime(0), saved(false), selected(false)
{
////
}
Expand Down

0 comments on commit d0dcc29

Please sign in to comment.