ModernUO/Projects/UOContent/Spells/Sixth
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
..
Dispel.cs fix: Removes duplicative spell checks (#849) 2021-11-14 18:45:16 -08:00
EnergyBolt.cs fix: Removes duplicative spell checks (#849) 2021-11-14 18:45:16 -08:00
Explosion.cs fix: Explosion doesn't properly cleanup if mobile fails harmful check (#1412) 2023-06-17 19:42:46 -07:00
Invisibility.cs fix: More spell variable cleanup (#850) 2021-11-14 18:48:44 -08:00
Mark.cs fix: Fixes travel restriction messages (#1263) 2022-11-22 16:57:42 -08:00
MassCurse.cs fix: Changes Map.Sector.Mobiles to link list & Fixes various related crash bugs (#1553) 2023-10-29 22:42:46 -07:00
ParalyzeField.cs fix: Fixes spell durations for older expansions (#1119) 2022-07-15 12:49:14 -07:00
Reveal.cs fix: Changes Map.Sector.Mobiles to link list & Fixes various related crash bugs (#1553) 2023-10-29 22:42:46 -07:00