File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
src/core/modules/entities Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -431,13 +431,13 @@ void CBaseEntityWrapper::SetSolidType(SolidType_t type)
431
431
}
432
432
433
433
434
- SolidFlags_t CBaseEntityWrapper::GetSolidFlags ()
434
+ unsigned short CBaseEntityWrapper::GetSolidFlags ()
435
435
{
436
436
static int offset = FindNetworkPropertyOffset (" m_Collision.m_usSolidFlags" );
437
- return (SolidFlags_t) GetNetworkPropertyByOffset<unsigned short >(offset);
437
+ return GetNetworkPropertyByOffset<unsigned short >(offset);
438
438
}
439
439
440
- void CBaseEntityWrapper::SetSolidFlags (SolidFlags_t flags)
440
+ void CBaseEntityWrapper::SetSolidFlags (unsigned short flags)
441
441
{
442
442
static int offset = FindNetworkPropertyOffset (" m_Collision.m_usSolidFlags" );
443
443
SetNetworkPropertyByOffset<unsigned short >(offset, flags);
Original file line number Diff line number Diff line change @@ -254,8 +254,8 @@ class CBaseEntityWrapper: public IServerEntity
254
254
SolidType_t GetSolidType ();
255
255
void SetSolidType (SolidType_t type);
256
256
257
- SolidFlags_t GetSolidFlags ();
258
- void SetSolidFlags (SolidFlags_t type);
257
+ unsigned short GetSolidFlags ();
258
+ void SetSolidFlags (unsigned short type);
259
259
260
260
Collision_Group_t GetCollisionGroup ();
261
261
void SetCollisionGroup (Collision_Group_t group);
You can’t perform that action at this time.
0 commit comments