Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/entity.cc')
-rw-r--r--src/core/entity.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/entity.cc b/src/core/entity.cc
index 3094208..7bb5278 100644
--- a/src/core/entity.cc
+++ b/src/core/entity.cc
@@ -550,7 +550,7 @@ void Entity::frame(const unsigned long elapsed)
void Entity::reset()
{
- if (!radius() || flag_is_set(NonSolid)) {
+ if (!radius() || has_flag(NonSolid)) {
return;
}
@@ -695,7 +695,7 @@ void EntityDynamic::set_state(int state)
void EntityDynamic::reset()
{
- if (!radius() || flag_is_set(NonSolid)) {
+ if (!radius() || has_flag(NonSolid)) {
return;
}
@@ -1169,7 +1169,7 @@ void EntityControlable::set_zone(Zone *zone)
void EntityControlable::reset()
{
- if (!radius() || flag_is_set(NonSolid)) {
+ if (!radius() || has_flag(NonSolid)) {
return;
}