PapaCharlie9 / insane-limits

PRoCon plugin Insane Limits by micovery
10 stars 9 forks source link

Possible Dictionary exception, key already added #33

Closed PapaCharlie9 closed 11 years ago

PapaCharlie9 commented 11 years ago

Using:

players.Add(pair.Key, pair.Value);

Should be changed to:

players[pair.Key] = pair.Value;

to allow overrides.