change operator for comparing counts for Quest Achievements from ?>=? to ?=?
This commit is contained in:
parent
a456784b76
commit
98f2437d0a
1 changed files with 1 additions and 1 deletions
|
|
@ -616,7 +616,7 @@
|
||||||
$data = $this->db->query(
|
$data = $this->db->query(
|
||||||
'SELECT ('.(
|
'SELECT ('.(
|
||||||
$count
|
$count
|
||||||
? "count($field) >= $value"
|
? "count($field) = $value"
|
||||||
: "$field = $value"
|
: "$field = $value"
|
||||||
). ') AS got '.
|
). ') AS got '.
|
||||||
'FROM quests_characters '.
|
'FROM quests_characters '.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue