Remove name check

This commit is contained in:
Diavolo 2021-08-29 22:13:03 +02:00
parent 9a1ab2c660
commit 5db5f707a9
No known key found for this signature in database
GPG Key ID: FA77F074E98D98A5

View File

@ -97,21 +97,21 @@ namespace Components
}
void Dvar::Var::set(int integer)
{
if (this->dvar && this->dvar->name && this->dvar->type == Game::dvar_type::DVAR_TYPE_INT)
if (this->dvar && this->dvar->type == Game::dvar_type::DVAR_TYPE_INT)
{
this->dvar->current.integer = integer;
}
}
void Dvar::Var::set(float value)
{
if (this->dvar && this->dvar->name && this->dvar->type == Game::dvar_type::DVAR_TYPE_FLOAT)
if (this->dvar && this->dvar->type == Game::dvar_type::DVAR_TYPE_FLOAT)
{
this->dvar->current.value = value;
}
}
void Dvar::Var::set(bool enabled)
{
if (this->dvar && this->dvar->name && this->dvar->type == Game::dvar_type::DVAR_TYPE_BOOL)
if (this->dvar && this->dvar->type == Game::dvar_type::DVAR_TYPE_BOOL)
{
this->dvar->current.enabled = enabled;
}