Removed debug thing

This commit is contained in:
Shoghi Cervantes 2013-06-05 12:59:50 +02:00
parent 5def864aca
commit 67b533a44d

View File

@ -54,7 +54,6 @@ class EntityAPI{
while(($e = $l->fetchArray(SQLITE3_ASSOC)) !== false){ while(($e = $l->fetchArray(SQLITE3_ASSOC)) !== false){
$e = $this->get($e["EID"]); $e = $this->get($e["EID"]);
if($e instanceof Entity){ if($e instanceof Entity){
console($e->eid);
$e->update(); $e->update();
$q .= "UPDATE entities SET hasUpdate = 0 WHERE EID = ".$e->eid.";"; $q .= "UPDATE entities SET hasUpdate = 0 WHERE EID = ".$e->eid.";";
} }