Age | Commit message (Collapse) | Author |
|
(#25305)
|
|
|
|
system (#25303)
|
|
|
|
|
|
|
|
sender (PR #25293)
|
|
|
|
make them slightly less creaky (and get rid of gcc warnings)
|
|
|
|
Closes #25289
|
|
Hi there Aokromes.
|
|
|
|
|
|
behavior
|
|
|
|
remove it
|
|
registration using new additional constructor argument support
|
|
the same thing and implemented passing custom arguments to spell script classes
|
|
* Trinity::find_type_if - Find a type matching predicate in a given template parameter pack
|
|
* Trinity::new_from_tuple - same as std::make_from_tuple except allocates object using "new"
* Trinity::is_tuple - detects whether given type is a tuple specialization
* advstd::type_identity - C++20 std::type_identity
|
|
(PR #25275)
|
|
|
|
|
|
|
|
system (#25284)
|
|
Co-authored-by: Carbenium <carbenium@outlook.com>
|
|
|
|
checks to be sent
|
|
system (PR #25276)
|
|
(PR #25277)
|
|
|
|
bodies to #ifdef
|
|
system (PR #25260)
|
|
code that essentially says __builtin_unreachable in the core is making me twitchy.
|
|
|
|
Closes #25269
|
|
trade links (PR #25270)
|
|
|
|
Co-authored-by: Treeston <treeston.mmoc@gmail.com>
|
|
|
|
summoned before
|
|
Closes #25265
|
|
to std::variant (for real this time)
|
|
|
|
|
|
to std::variant, which means we no longer need visitors
|
|
|
|
* Core/Pets: Pet management refactoring
* Preload basic pet data on character login with async query
* Load additional pet data (declined names/auras/spells/cooldowns) using async query after we are sure pet loading will succeed
* Remove all select queries related to pet stable/unstable
* Remove all silent pet deletions except explicit UI-triggered abandons
* Fixed displaying stable master content when current pet is not summoned
* Allow to stable/swap unsummoned current pet
Closes #3610
Closes #21266
|
|
#25259)
Check if integral/floating point type arguments were parsed successfully.
std::stoull will happily parse floating point strings until the decimal separator and return the value.
Make sure for all parsing methods that we actually parsed the whole token.
This allows to use handler arguments like Variant<uint32, float> which will be populated with the right type
depending on the token value (e.g "10" vs "10.0").
|