ModernUO/Projects/UOContent/Commands/Object Creation
Kamron Batman 28c06c1cc0
fix: Changes Map.Sector.Mobiles to link list & Fixes various related crash bugs (#1553)
### Summary

Eliminates `IPooledEnumerable<T>` and `eable.Free()` from `Map` for mobiles. This drastically simplifies code that iterates in range, for example:

```cs
foreach (var m in m.GetMobilesInRange(5))
{
}
```
The code above no longer requires an eable and calling `Free()`.

- [X] Fixed several locations where an NPC that was damaged would cause a server crash.
- [X] Removed an unnecessary allocation in guard fake calls (NPCs calling guards on you)
- [X] Fixes damage precision loss in Poison Strike Spell
- [X] BogThing no longer attempts to "search" for boglings to eat when it is at full health
2023-10-29 22:42:46 -07:00
..
Add.cs fix: Update LabelTo, SendMessage, etc to Interpolated Strings (#1283) 2022-11-28 19:58:12 -08:00
AddGump.cs fix: Cleans up Point checks and removes statics (#966) 2022-03-20 23:15:59 -07:00
CAGCategory.cs chore: Updates copyright (#1448) 2023-08-09 09:09:26 -07:00
CAGLoader.cs chore: Updates copyright (#1448) 2023-08-09 09:09:26 -07:00
CAGNode.cs chore: Updates copyright (#1448) 2023-08-09 09:09:26 -07:00
CAGObject.cs chore: Updates copyright (#1448) 2023-08-09 09:09:26 -07:00
CategorizedAddGump.cs fix(cleanup): Consolidate the duplicate code in Properties, PropsGump, and PropsConfig (#540) 2021-04-14 22:58:56 -07:00
Decorate.cs fix: Changes Map.Sector.Mobiles to link list & Fixes various related crash bugs (#1553) 2023-10-29 22:42:46 -07:00
DecorateMag.cs fix: Changes Map.Sector.Items to link list. (#1547) 2023-10-16 20:51:02 -07:00
GenTeleporter.cs fix: Fixes map iterators for Items (#1564) 2023-10-26 17:49:15 -07:00