Commit graph

4 commits

Author SHA1 Message Date
FlaggAC
7f1b58ab24
Change static readonly fields to const fields. (#4211)
This will at least somewhat improve performance, as confirmed through microbenchmark testing.

const fields are replaced with literal values in the Assembly's IL code, while static readonly fields may be optimized by the JIT, and is not guaranteed to happen. const fields may also lend themselves to stronger optimizations at runtime.
2024-08-24 14:32:35 +00:00
gmriggs
e152d833e5
add support for Int64 mutations for Paragon weapons (#3642) 2021-08-15 18:41:14 -04:00
gmriggs
9fc6c7ba8a
fix defense imbues (#3614)
* fix defense imbues

* update comment
2021-07-14 17:18:26 -04:00
gmriggs
c90baf8a80
update recipes to use mutation scripts (#3593)
* update recipes to use mutation scripts

* additional refactoring

* .

* update proficiency code

* foolproof salvage code is still needed until recipes are added

* add comment

* add rare foolproof

* update sandstone

* adding sandstone mutation

* update RecipeManager_New recipes for foolproof salvage

* add RecipeManager_New caching

* finish removing ClearRecipe()

* update comments

* update defense imbues to include shields, as per base recipe

* improved UpdateObject server sync
2021-07-11 20:14:21 -04:00
Renamed from Source/ACE.Server/Factories/Entity/MutationCache.cs (Browse further)