change operator for comparing counts for Quest Achievements from ?>=? to ?=?

This commit is contained in:
oliver 2015-04-08 10:06:59 +02:00
commit 23de034a8a

View file

@ -616,7 +616,7 @@
$data = $this->db->query(
'SELECT ('.(
$count
? "count($field) >= $value"
? "count($field) = $value"
: "$field = $value"
). ') AS got '.
'FROM quests_characters '.