ModernUO/Projects/Server/Items
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
..
BaseMulti.cs feat: Adds Next/Prev for future link list support (#1546) 2023-10-14 19:43:10 -07:00
BaseMulti.SectorMultiLinkList.cs feat: Adds Next/Prev for future link list support (#1546) 2023-10-14 19:43:10 -07:00
Container.cs fix: Fix ConsumeTotal always failing (#1534) 2023-10-06 11:02:59 -07:00
Container.Enumerable.cs fix: Cleans up FindItems and removes allocations (#1516) 2023-09-28 22:20:36 -07:00
Containers.cs fix: Fixes critical serial dupe bug and deserialization/serialization issues. (#1245) 2022-11-13 15:54:58 -08:00
Item.cs fix: Changes Map.Sector.Mobiles to link list & Fixes various related crash bugs (#1553) 2023-10-29 22:42:46 -07:00
ItemBounds.cs chore: Updates copyright (#1448) 2023-08-09 09:09:26 -07:00
Layer.cs chore: Updates copyright (#1448) 2023-08-09 09:09:26 -07:00
LightType.cs chore: Updates copyright (#1448) 2023-08-09 09:09:26 -07:00
SecureTradeContainer.cs fix: Cleans up core code (#1187) 2022-10-10 21:47:08 -07:00
VirtualCheck.cs chore: Updates copyright (#1448) 2023-08-09 09:09:26 -07:00
VirtualHair.cs fix: Fixes more packet initializations (#1507) 2023-09-19 00:02:17 -07:00