From a4600e94de6f364c4c613aa443a6d96b6312da23 Mon Sep 17 00:00:00 2001 From: kremsy Date: Tue, 9 May 2017 22:35:30 +0200 Subject: [PATCH] small typo fix --- core/Callbacks/Structures/ShootMania/OnCaptureStructure.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/Callbacks/Structures/ShootMania/OnCaptureStructure.php b/core/Callbacks/Structures/ShootMania/OnCaptureStructure.php index 29d27ca3..40b578e2 100644 --- a/core/Callbacks/Structures/ShootMania/OnCaptureStructure.php +++ b/core/Callbacks/Structures/ShootMania/OnCaptureStructure.php @@ -40,8 +40,8 @@ class OnCaptureStructure extends BaseStructure { $this->landMark = new Landmark(); $this->landMark->setTag($jsonObj->landmark->tag); - $this->landMark->setOrder($jsonObj->landmark->tag); - $this->landMark->setId($jsonObj->landmark->tag); + $this->landMark->setOrder($jsonObj->landmark->order); + $this->landMark->setId($jsonObj->landmark->id); $position = new Position(); $position->setX($jsonObj->landmark->position->x);