format everything

This commit is contained in:
Tropical
2026-04-01 13:48:29 -05:00
parent 3e813592e4
commit dd93cfe91e
380 changed files with 2698 additions and 2595 deletions

View File

@@ -49,12 +49,12 @@ std::shared_ptr<ChatPacket> EntityDamageSource::getDeathMessagePacket(
}
if ((held != nullptr) && held->hasCustomHoverName()) {
return std::make_shared<ChatPacket>(
player->getNetworkName(), m_msgWithItemId, entity->GetType(),
additional, held->getHoverName());
return std::make_shared<ChatPacket>(player->getNetworkName(),
m_msgWithItemId, entity->GetType(),
additional, held->getHoverName());
} else {
return std::make_shared<ChatPacket>(
player->getNetworkName(), m_msgId, entity->GetType(), additional);
return std::make_shared<ChatPacket>(player->getNetworkName(), m_msgId,
entity->GetType(), additional);
}
}