mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-19 13:28:25 +00:00
[int64] Hate Fixes (#2163)
* Hate fixes * Update perl_hateentry.cpp * Update perl_hateentry.cpp
This commit is contained in:
+10
-1
@@ -4018,7 +4018,7 @@ std::string Mob::GetTargetDescription(Mob* target, uint8 description_type)
|
||||
|
||||
auto d = fmt::format(
|
||||
"{}",
|
||||
(
|
||||
(
|
||||
this == target ?
|
||||
self_return :
|
||||
fmt::format(
|
||||
@@ -6865,3 +6865,12 @@ void Mob::SetBucket(std::string bucket_name, std::string bucket_value, std::stri
|
||||
std::string full_bucket_name = fmt::format("{}-{}", GetBucketKey(), bucket_name);
|
||||
DataBucket::SetData(full_bucket_name, bucket_value, expiration);
|
||||
}
|
||||
|
||||
std::string Mob::GetMobDescription()
|
||||
{
|
||||
return fmt::format(
|
||||
"[{}] ({})",
|
||||
GetCleanName(),
|
||||
GetID()
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user