mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
Convert TriggeredAbilities back to HashMap - no multi-threaded updates to this object should occur
This commit is contained in:
parent
2a2ad3b362
commit
fcb9bc9351
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ import mage.game.permanent.Permanent;
|
|||
*
|
||||
* @author BetaSteward_at_googlemail.com
|
||||
*/
|
||||
public class TriggeredAbilities extends ConcurrentHashMap<String, TriggeredAbility> {
|
||||
public class TriggeredAbilities extends HashMap<String, TriggeredAbility> {
|
||||
|
||||
private final Map<String, List<UUID>> sources = new HashMap<>();
|
||||
|
||||
|
|
Loading…
Reference in a new issue