Skip to content

Commit 1b67129

Browse files
committed
Fixed BaseEntity.is_marked_for_deletion from checking the wrong flag.
1 parent 83e23cb commit 1b67129

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/modules/entities/entities_entity.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ void CBaseEntityWrapper::remove()
234234

235235
bool CBaseEntityWrapper::is_marked_for_deletion()
236236
{
237-
return GetEntityFlags() & FL_KILLME;
237+
return GetEntityFlags() & EFL_KILLME;
238238
}
239239

240240
int CBaseEntityWrapper::get_size()

0 commit comments

Comments
 (0)