Hi, sorry to disturb but I'm losing too much time try to understand what's wrong with my code. I have a state of type game with an Action. Action is never execute.
2 => array(
"name" => "doSomething",
"description" => "",
"descriptionmyturn" => "",
"type" => "game",
"action" => "stdoSomething",
"updateGameProgression" => true,
"transitions" => array( "" => 3 )
),
in game.php I have
function stdoSomething()
{
self::debug("stdoSomething");
}
Thanks for any hint.
Paolo
2 => array(
"name" => "doSomething",
"description" => "",
"descriptionmyturn" => "",
"type" => "game",
"action" => "stdoSomething",
"updateGameProgression" => true,
"transitions" => array( "" => 3 )
),
in game.php I have
function stdoSomething()
{
self::debug("stdoSomething");
}
Thanks for any hint.
Paolo