ModernUO/Projects/UOContent/Spells/Seventh
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
..
ChainLightning.cs fix: Changes Map.Sector.Mobiles to link list & Fixes various related crash bugs (#1553) 2023-10-29 22:42:46 -07:00
EnergyField.cs fix: Cleans up LINQ calls. (#965) 2022-03-20 19:20:54 -07:00
FlameStrike.cs fix: Removes duplicative spell checks (#849) 2021-11-14 18:45:16 -08:00
GateTravel.cs fix: Fixes map iterators for Items (#1564) 2023-10-26 17:49:15 -07:00
ManaVampire.cs fix: Fixes mana vampire creating mana from thin air (#1561) 2023-10-22 12:07:14 -07:00
MassDispel.cs fix: Changes Map.Sector.Mobiles to link list & Fixes various related crash bugs (#1553) 2023-10-29 22:42:46 -07:00
MeteorSwarm.cs fix: Changes Map.Sector.Mobiles to link list & Fixes various related crash bugs (#1553) 2023-10-29 22:42:46 -07:00
Polymorph.cs fix: Updates disguises and codegens tinkering items (#1353) 2023-02-25 12:01:06 -08:00