Skip to content
This repository has been archived by the owner on Feb 8, 2022. It is now read-only.

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Chasmical committed Sep 6, 2020
1 parent b7d6978 commit da3c4ab
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@
</tr>
</table>

## Suggestions *(Soon!)* ##
## Suggestions ##
<details><summary>Suggestion (translated from russian)</summary>
<blockquote cite="https://discordapp.com/channels/402143558695387144/564721231576694784/731834503710113843"><p>
<span title="а че насчет гранат для инопланетных существ.">what about grenades for alien beings.</span><br/>
Expand Down
8 changes: 4 additions & 4 deletions aTonOfItems/aToI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ public void Awake()
};
#endregion





Expand Down Expand Up @@ -706,10 +706,11 @@ public static bool PlayfieldObject_FindDamage(PlayfieldObject __instance, Playfi
return true;
}

#region Voodoo Checks
public void Update() => VoodooCheck();

public static Dictionary<InvItem, Agent> VoodooUpdateList { get; set; }
public static Dictionary<InvItem, float> VoodooCooldowns { get; set; }
public void Update()
public void VoodooCheck()
{
List<InvItem> removal = new List<InvItem>();
Dictionary<InvItem, float> newDictionary = new Dictionary<InvItem, float>();
Expand Down Expand Up @@ -743,6 +744,5 @@ public void Update()
VoodooCooldowns.Remove(item);
}
}
#endregion
}
}

0 comments on commit da3c4ab

Please sign in to comment.