Enum PlacementConflictResolution
Enum for controlling what should happen when a placement is added, and another placement with the same name already exists in settings.
Namespace: ItemChanger
Assembly: ItemChanger.dll
Syntax
public enum PlacementConflictResolution
Fields
| Name | Description |
|---|---|
| Ignore | Keep old placement, discard new placement |
| MergeKeepingNew | Keep new placement, discard old placement, and append items of old placement to new placement. |
| MergeKeepingOld | Keep old placement, discard new placement, and append items of new placement to old placement. |
| Replace | Keep new placement, discard old placement |
| Throw | A duplicate placement will result in an ArgumentException. |