ModernUO/Projects/UOContent/Engines
Kamron Batman db02a6b6e9
fix(core): Fixes some properties that cannot be modified ingame (#604)
- [X] Adds a property to `CommandProperty` to allow modifying `PropertyObject` where there is no property setter that is accessible.
- [X] Updates AosAttributes and friends

Example of how to make this work:
```cs
        [CommandProperty(AccessLevel.GameMaster, canModify: true)]
        public AosWeaponAttributes WeaponAttributes { get; private set; }
```

This fix is necessary because in release mode the optimizer will sometimes _entirely remove the setter_ because it knows it can do something that is more efficient _when the property setter is private_. RunUO got around this by declaring a public setter explicitly that _was empty_.

### Screenshot
<img width="313" alt="Screen Shot 2021-05-15 at 11 34 01 PM" src="https://user-images.githubusercontent.com/3953314/118387955-49293c00-b5d6-11eb-8f31-a3b5e31bd18b.png">
2021-05-15 23:47:33 -07:00
..
Bulk Orders fix(core): Updates slice with range selectors (#583) 2021-04-23 20:57:24 -07:00
CannedEvil feat(champs): Ports Casiopia champions (#584) 2021-05-09 00:20:43 -07:00
Chat fix(core): Updates slice with range selectors (#583) 2021-04-23 20:57:24 -07:00
ConPVP fix(core): Fixes some properties that cannot be modified ingame (#604) 2021-05-15 23:47:33 -07:00
Craft fix(content): Adds Gargish leather and studded armor (#559) 2021-03-31 17:29:25 -07:00
Doom fix(doom): Adds RemGauntlet (#591) 2021-05-09 09:40:23 -07:00
Ethics fix(core): Caches DateTime.NowUtc (#548) 2021-03-13 01:32:04 -08:00
Events fix(core): Caches DateTime.NowUtc (#548) 2021-03-13 01:32:04 -08:00
Factions fix(core): Caches DateTime.NowUtc (#548) 2021-03-13 01:32:04 -08:00
Harvest fix(network): Adds UOG & Fixes ConnectUO packet (#552) 2021-03-15 16:18:28 -07:00
Help fix(core): Caches DateTime.NowUtc (#548) 2021-03-13 01:32:04 -08:00
Khaldun fix(core): Caches DateTime.NowUtc (#548) 2021-03-13 01:32:04 -08:00
ML Quests fix(core): Fixes displaying some doubles (#585) 2021-04-25 14:04:44 -07:00
Party fix(core): Updates slice with range selectors (#583) 2021-04-23 20:57:24 -07:00
Pathing fix(network): Adds UOG & Fixes ConnectUO packet (#552) 2021-03-15 16:18:28 -07:00
Plants fix(core): Caches DateTime.NowUtc (#548) 2021-03-13 01:32:04 -08:00
Quests fix(core): Caches DateTime.NowUtc (#548) 2021-03-13 01:32:04 -08:00
Spawners fix(core): Updates slice with range selectors (#583) 2021-04-23 20:57:24 -07:00
Treasures of Tokuno fix(network): Adds UOG & Fixes ConnectUO packet (#552) 2021-03-15 16:18:28 -07:00
Veteran Rewards fix(core): Caches DateTime.NowUtc (#548) 2021-03-13 01:32:04 -08:00
Virtues fix(core): Caches DateTime.NowUtc (#548) 2021-03-13 01:32:04 -08:00