WayPoint-Callback already takes a Structure

This commit is contained in:
Alexander Nell 2020-05-07 12:58:35 +02:00
parent 9a7952811a
commit 0db1636a38
1 changed files with 2 additions and 4 deletions

View File

@ -102,11 +102,9 @@ class TrackManiaCallbacks implements CallbackListener {
/**
* Trigger the three different Types of Callbacks
*
* @param $data
* @param \ManiaControl\Callbacks\Structures\TrackMania\OnWayPointEventStructure $structure
*/
public function handleWayPointCallback($data) {
$structure = new OnWayPointEventStructure($this->maniaControl, $data);
public function handleWayPointCallback(OnWayPointEventStructure $structure) {
if ($structure->getIsEndRace()) {
$this->maniaControl->getCallbackManager()->triggerCallback(Callbacks::TM_ONFINISHLINE, $structure);
} else if ($structure->getIsEndLap()) {