Skip to content

Commit

Permalink
fix: WeaponCollection fix after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
prikolium-cfx committed Jan 6, 2025
1 parent b775dc5 commit 32ea05c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions code/client/clrcore/External/WeaponCollection.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System.Collections;
using System.Collections.Generic;

#if MONO_V2
Expand Down Expand Up @@ -30,6 +31,11 @@ public IEnumerator<Weapon> GetEnumerator()
}
}

IEnumerator IEnumerable.GetEnumerator()
{
return GetEnumerator();
}

public Weapon this[WeaponHash hash]
{
get
Expand Down

0 comments on commit 32ea05c

Please sign in to comment.