Skip to content

Commit

Permalink
fix for wrong referncing
Browse files Browse the repository at this point in the history
  • Loading branch information
J-N committed Feb 25, 2013
1 parent 019173b commit bcd1837
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/swganh_core/object/object.h
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ class Object :
template<typename T>
void NotifyObservers(swganh::messages::BaseBaselinesMessage* message)
{
if (! (message.view_type == 3 || message.view_type == 6))
if (! (message->view_type == 3 || message->view_type == 6))
{
if (HasController())
{
Expand Down

0 comments on commit bcd1837

Please sign in to comment.