LucasFerraz
Systems Analyst
1. How can I change this to ignore where player.deleted > 0 ?
2. Where can I find this? $GLOBALS['characters'] = $characters;
PHP:
public function characterExists($name) {
$this->db->select('id');
return ($this->db->get_where('players', array('name' => $name))->num_rows ? true : false);
}
2. Where can I find this? $GLOBALS['characters'] = $characters;