Fix game post
This commit is contained in:
parent
2072ba5744
commit
ef2dd8b746
1 changed files with 3 additions and 3 deletions
|
@ -95,16 +95,16 @@ class ScoreControllerProvider implements ControllerProviderInterface
|
||||||
|
|
||||||
// attributes
|
// attributes
|
||||||
$hit->getAttributes()->setGlasses($data_hit['glasses']);
|
$hit->getAttributes()->setGlasses($data_hit['glasses']);
|
||||||
foreach($hit->getAttributes()->ATTRIBUTES as $attribute) {
|
foreach($hit->getAttributes()::$ATTRIBUTES as $attribute) {
|
||||||
$hit->getAttributes()->setAttribute($attribute, $data_hit[$attribute]);
|
$hit->getAttributes()->setAttribute($attribute, $data_hit[$attribute]);
|
||||||
}
|
}
|
||||||
// emotions
|
// emotions
|
||||||
foreach($hit->getEmotions()->EMOTIONS as $emotion) {
|
foreach($hit->getEmotions()::$EMOTIONS as $emotion) {
|
||||||
$hit->getEmotions()->setEmotion($emotion, $data_hit['emotions'][$emotion]);
|
$hit->getEmotions()->setEmotion($emotion, $data_hit['emotions'][$emotion]);
|
||||||
}
|
}
|
||||||
|
|
||||||
//expressions
|
//expressions
|
||||||
foreach($hit->getExpressions()->EXPRESSIONS as $expression) {
|
foreach($hit->getExpressions()::$EXPRESSIONS as $expression) {
|
||||||
$hit->getExpressions()->setExpression($expression, $data_hit['expressions'][$expression]);
|
$hit->getExpressions()->setExpression($expression, $data_hit['expressions'][$expression]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue