format codebase

This commit is contained in:
aronwk-aaron
2022-07-28 08:39:57 -05:00
parent 4f7aa11067
commit 19e77a38d8
881 changed files with 34700 additions and 38689 deletions

View File

@@ -1,14 +1,12 @@
#include "NtXRayServer.h"
#include "SkillComponent.h"
void NtXRayServer::OnCollisionPhantom(Entity* self, Entity* target)
{
auto* skillComponent = target->GetComponent<SkillComponent>();
if (skillComponent == nullptr)
{
return;
}
void NtXRayServer::OnCollisionPhantom(Entity* self, Entity* target) {
auto* skillComponent = target->GetComponent<SkillComponent>();
skillComponent->CalculateBehavior(1220, 27641, target->GetObjectID());
if (skillComponent == nullptr) {
return;
}
skillComponent->CalculateBehavior(1220, 27641, target->GetObjectID());
}