Skip to content

Commit

Permalink
xrServerEntities: fix undefined reference to `CALifeMonsterBrain::sma…
Browse files Browse the repository at this point in the history
…rt_terrain()
  • Loading branch information
eagleivg committed Nov 6, 2018
1 parent 4725858 commit efc4558
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/xrServerEntities/alife_monster_brain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ ALife::EMeetActionType CALifeMonsterBrain::action_type(
void CALifeMonsterBrain::on_register() {}
void CALifeMonsterBrain::on_unregister() {}
void CALifeMonsterBrain::on_location_change() {}
IC CSE_ALifeSmartZone& CALifeMonsterBrain::smart_terrain()
CSE_ALifeSmartZone& CALifeMonsterBrain::smart_terrain()
{
VERIFY(object().m_smart_terrain_id != 0xffff);
if (m_smart_terrain && (object().m_smart_terrain_id == m_smart_terrain->ID))
Expand Down
2 changes: 1 addition & 1 deletion src/xrServerEntities/alife_monster_brain.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class CALifeMonsterBrain
public:
IC object_type& object() const;
IC movement_manager_type& movement() const;
IC CSE_ALifeSmartZone& smart_terrain();
CSE_ALifeSmartZone& smart_terrain();
IC void can_choose_alife_tasks(bool value);
};

Expand Down

0 comments on commit efc4558

Please sign in to comment.