[Databuckets] Move Databuckets to Common (#4918)

* [Databuckets] Move Databuckets to Common

* Fix linking issue
This commit is contained in:
Chris Miles
2025-06-16 16:48:29 -05:00
committed by GitHub
parent a0ff9d67a1
commit 1be7e56b86
23 changed files with 62 additions and 60 deletions
+2 -2
View File
@@ -492,12 +492,12 @@ void Perl_Bot_SetSpellDurationRaid(Bot* self, int spell_id, int duration, int le
bool Perl_Bot_ReloadBotDataBuckets(Bot* self)
{
return DataBucket::GetDataBuckets(self);
return self->LoadDataBucketsCache();
}
bool Perl_Bot_ReloadBotOwnerDataBuckets(Bot* self)
{
return self->HasOwner() && DataBucket::GetDataBuckets(self->GetBotOwner());
return self->HasOwner() && self->LoadDataBucketsCache();
}
bool Perl_Bot_ReloadBotSpells(Bot* self)