Further repeatable quest improvements

This commit is contained in:
Chomp
2025-01-18 12:00:49 +00:00
parent f32e39b1da
commit 02dc5ed882
3 changed files with 11 additions and 8 deletions
@@ -4,9 +4,9 @@ namespace Core.Utils.Extensions
{
public static class EliminationTargetPoolExtensions
{
public static void Remove<T>(this EliminationTargetPool pool, T key)
public static void Remove(this EliminationTargetPool pool, string key)
{
// TODO: Implement
pool[key] = null;
}
}
}