summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--database.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/database.php b/database.php
index a47b2b3..30ba66a 100644
--- a/database.php
+++ b/database.php
@@ -37,7 +37,7 @@
$decision['status'] = -1;
} else {
$votes = $decision['ayes'] + $decision['nayes'];
- if (($decision['ayes'] / $votes) >= ($decision['majority'] / 100)) {
+ if (($decision['ayes'] / $votes) > ($decision['majority'] / 100)) {
$decision['status'] = 1;
} else {
$decision['status'] = -1;