From 8d376702b92bbfeed7dd57b5a768dd0a8b4e7b8d Mon Sep 17 00:00:00 2001 From: kremsy Date: Sat, 6 May 2017 11:22:57 +0200 Subject: [PATCH] fixed callback typo --- core/Callbacks/Structures/TrackMania/OnRespawnStructure.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/Callbacks/Structures/TrackMania/OnRespawnStructure.php b/core/Callbacks/Structures/TrackMania/OnRespawnStructure.php index f3368c53..a01c644b 100644 --- a/core/Callbacks/Structures/TrackMania/OnRespawnStructure.php +++ b/core/Callbacks/Structures/TrackMania/OnRespawnStructure.php @@ -37,7 +37,7 @@ class OnRespawnStructure extends BasePlayerTimeStructure { $jsonObj = $this->getPlainJsonObject(); - $this->numberOfRespawns = (int) $jsonObj->numberOfRespawns; + $this->numberOfRespawns = (int) $jsonObj->nbrespawns; $this->raceTime = (int) $jsonObj->racetime; $this->lapTime = (int) $jsonObj->laptime; $this->stuntsScore = $jsonObj->stuntsscore;