Skip to content

Commit

Permalink
Merge pull request #58 from SirYodaJedi/master
Browse files Browse the repository at this point in the history
Don't network info_null
  • Loading branch information
AnthonyPython authored Sep 9, 2024
2 parents 71a488a + ea63e94 commit 170f69c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions mp/src/game/server/subs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ void CPointEntity::Spawn( void )
}


class CNullEntity : public CBaseEntity
class CNullEntity : public CServerOnlyEntity
{
public:
DECLARE_CLASS( CNullEntity, CBaseEntity );
DECLARE_CLASS( CNullEntity, CServerOnlyEntity );

void Spawn( void );
};
Expand Down
4 changes: 2 additions & 2 deletions sp/src/game/server/subs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ void CPointEntity::Spawn( void )
}


class CNullEntity : public CBaseEntity
class CNullEntity : public CServerOnlyEntity
{
public:
DECLARE_CLASS( CNullEntity, CBaseEntity );
DECLARE_CLASS( CNullEntity, CServerOnlyEntity );

void Spawn( void );
};
Expand Down

0 comments on commit 170f69c

Please sign in to comment.