Skip to content

Commit 60d2cfe

Browse files
committed
Fix #169
1 parent 84c3967 commit 60d2cfe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

system/libs/pot/OTS_Player.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2489,7 +2489,7 @@ public function getStorage($key)
24892489

24902490
$value = $this->db->query('SELECT ' . $this->db->fieldName('value') . ' FROM ' . $this->db->tableName('player_storage') . ' WHERE ' . $this->db->fieldName('key') . ' = ' . (int) $key . ' AND ' . $this->db->fieldName('player_id') . ' = ' . $this->data['id'])->fetch();
24912491

2492-
if($value !== false)
2492+
if($value === false)
24932493
{
24942494
return null;
24952495
}

0 commit comments

Comments
 (0)