Remove() Methods
v4.0
Remove()
Remove()// Remove by Stat, GameStat, or uid
gameStatList.Remove(stat);
gameStatList.Remove(gameStat);
gameStatList.Remove(uid);
// Remove all by Stat, GameStat, or uid
gameStatList.RemoveAll(stat);
gameStatList.RemoveAll(gameStat);
gameStatList.RemoveAll(uid);
// Remove by a gameId -- These do the same thing
gameStatList.RemoveGameId(gameId);
gameStatList.RemoveExact(gameId);
// Remove an exact Game Module Object
gameStatList.RemoveExact(gameStat); // pass in the gameStat we want to remove
// Clear the entire list
gameStatList.Clear();GameConditionList
GameConditionListRemove all from a specific IHaveStats source
IHaveStats sourceExpire all from a specific IHaveStats source
IHaveStats sourceGameItemObjectList
GameItemObjectListRemove all based on number of ItemAttributes
ItemAttributesRemove all based on specific ItemAttributes
ItemAttributesRemove duplicates
Last updated