cheat spawnpickup, teams on >s4, bga spawning, gameplayeffects apply from abilityset
This commit is contained in:
Milxnor
2023-04-08 00:35:54 -04:00
parent 636a084bcb
commit 5f5d7fb649
27 changed files with 712 additions and 125 deletions

View File

@@ -117,7 +117,7 @@ public:
}
FORCEINLINE bool Contains(const KeyType& ElementToLookFor) const
{
for (auto Element : *this)
for (auto& Element : *this)
{
if (Element.Key() == ElementToLookFor)
return true;
@@ -126,7 +126,7 @@ public:
}
FORCEINLINE ValueType& GetByKey(const KeyType& Key)
{
for (auto Pair : *this)
for (auto& Pair : *this)
{
if (Pair.Key() == Key)
{
@@ -142,7 +142,7 @@ public:
}
FORCEINLINE ValueType GetByKeyNoRef(const KeyType& Key)
{
for (auto Pair : *this)
for (auto& Pair : *this)
{
if (Pair.Key() == Key)
{