Check DB for certain move on a Bug Report
Posted: 12 June 2020, 17:16
Hi! I'm trying to debug an error on table 94225424 of XanadĂș, but I find some weird behavior for which I would require to be able to see the DB for that particular game state (a cards is being autosold with only three workers, even thought it requires 4 workers for that to happen, an later on one card is no being autosold and it should). My code seem to be ok, for example, for the first scenario my query is:
$toAutoSell = self::getCollectionFromDB( "SELECT card_id, card_type, used_slots, card_location_arg FROM card WHERE used_slots=4" );
So I can only think there is something weird on the db and would like to check it out to try to find what happened, but I can't find a way to access that info. Is there a way?
Thanks!
$toAutoSell = self::getCollectionFromDB( "SELECT card_id, card_type, used_slots, card_location_arg FROM card WHERE used_slots=4" );
So I can only think there is something weird on the db and would like to check it out to try to find what happened, but I can't find a way to access that info. Is there a way?
Thanks!