mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-21 11:41:03 +00:00
fix MBF21 ClearCountItem
This commit is contained in:
parent
ccbebfcf34
commit
2b2e85005c
1 changed files with 1 additions and 1 deletions
|
@ -3952,7 +3952,7 @@ void ClearCountitem(AActor* a)
|
||||||
{
|
{
|
||||||
if (a->flags & MF_COUNTITEM)
|
if (a->flags & MF_COUNTITEM)
|
||||||
{
|
{
|
||||||
a->flags |= MF_COUNTITEM;
|
a->flags &= ~MF_COUNTITEM;
|
||||||
a->Level->total_items--;
|
a->Level->total_items--;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue