mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 17:58:20 +00:00
Fixes
This commit is contained in:
parent
2122448284
commit
d05601ce64
@ -10,16 +10,19 @@ void WhFans::OnStartup(Entity* self) {
|
||||
}
|
||||
|
||||
void WhFans::ToggleFX(Entity* self, bool hit) {
|
||||
std::string fanGroup = "";
|
||||
try {
|
||||
fanGroup = self->GetGroups()[0];
|
||||
} catch(...) {
|
||||
std::string fanGroup;
|
||||
const auto& groups = self->GetGroups();
|
||||
if (!groups.empty()) {
|
||||
fanGroup = groups[0];
|
||||
} else {
|
||||
fanGroup = "";
|
||||
}
|
||||
|
||||
std::vector<Entity*> fanVolumes = EntityManager::Instance()->GetEntitiesInGroup(fanGroup);
|
||||
|
||||
auto* renderComponent = static_cast<RenderComponent*>(self->GetComponent(COMPONENT_TYPE_RENDER));
|
||||
auto* renderComponent = self->GetComponent<RenderComponent*>();
|
||||
|
||||
if (renderComponent == nullptr) return;
|
||||
|
||||
if (fanVolumes.size() == 0 || !self->GetVar<bool>(u"alive")) return;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user