diff --git a/includes/dbtypes/creature.class.php b/includes/dbtypes/creature.class.php index 5eb4edd8..bd92c9ec 100644 --- a/includes/dbtypes/creature.class.php +++ b/includes/dbtypes/creature.class.php @@ -376,11 +376,11 @@ class CreatureListFilter extends Filter $parts[] = ['rank', $_v['cl']]; // react Alliance [int] - if ($_v['ra']) + if (!is_null($_v['ra'])) $parts[] = ['ft.A', $_v['ra']]; // react Horde [int] - if ($_v['rh']) + if (!is_null($_v['rh'])) $parts[] = ['ft.H', $_v['rh']]; return $parts; diff --git a/template/pages/areatriggers.tpl.php b/template/pages/areatriggers.tpl.php index 3f187918..e9d574a3 100644 --- a/template/pages/areatriggers.tpl.php +++ b/template/pages/areatriggers.tpl.php @@ -26,7 +26,7 @@ $this->brick('redButtons');