ModernUO/Projects/UOContent/Spells/Spellweaving
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
..
Items fix: Optimizes TextDefinition to eliminate allocations. Removes TextDefinition ctor. (#1221) 2022-10-30 16:53:23 -07:00
Mobiles fix: Removes scale speed by dex for monsters, fixes NPC movement/thinking speed (#1019) 2022-05-15 10:01:14 -07:00
ArcaneCircle.cs fix: Changes Map.Sector.Mobiles to link list & Fixes various related crash bugs (#1553) 2023-10-29 22:42:46 -07:00
ArcaneForm.cs fix: Cleans up more spells (#1121) 2022-07-16 22:32:51 -07:00
ArcaneSummon.cs Fixes dupe exception (#258) 2020-09-19 15:46:07 -07:00
ArcanistSpell.cs fix: Cleans up more spells (#1121) 2022-07-16 22:32:51 -07:00
AttuneWeapon.cs fix: Cleans up more spells (#1121) 2022-07-16 22:32:51 -07:00
EssenceOfWind.cs fix: Changes Map.Sector.Mobiles to link list & Fixes various related crash bugs (#1553) 2023-10-29 22:42:46 -07:00
EtherealVoyage.cs fix: Cleans up more spells (#1121) 2022-07-16 22:32:51 -07:00
GiftOfLife.cs fix: Cleans up more spells (#1121) 2022-07-16 22:32:51 -07:00
GiftOfRenewal.cs fix: Cleans up more spells (#1121) 2022-07-16 22:32:51 -07:00
ImmolatingWeapon.cs fix: Cleans up more spells (#1121) 2022-07-16 22:32:51 -07:00
NatureFury.cs fix: Cleans up more spells (#1121) 2022-07-16 22:32:51 -07:00
ReaperForm.cs fix: Cleans up spell info variable (#848) 2021-11-14 18:31:32 -08:00
SummonFey.cs fix: Cleans up more spells (#1121) 2022-07-16 22:32:51 -07:00
SummonFiend.cs fix: Cleans up more spells (#1121) 2022-07-16 22:32:51 -07:00
Thunderstorm.cs fix: Changes Map.Sector.Mobiles to link list & Fixes various related crash bugs (#1553) 2023-10-29 22:42:46 -07:00
WordOfDeath.cs fix: Removes duplicative spell checks (#849) 2021-11-14 18:45:16 -08:00