From b7993052f72b58edf45cf7ed4246d559001296c5 Mon Sep 17 00:00:00 2001 From: Alexander Nell Date: Tue, 19 May 2020 21:33:38 +0200 Subject: [PATCH] Wrong comparison on Duplicate Alter-Table call fixed --- plugins/MCTeam/LocalRecordsPlugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/MCTeam/LocalRecordsPlugin.php b/plugins/MCTeam/LocalRecordsPlugin.php index 949b4a26..01ff3117 100644 --- a/plugins/MCTeam/LocalRecordsPlugin.php +++ b/plugins/MCTeam/LocalRecordsPlugin.php @@ -206,7 +206,7 @@ class LocalRecordsPlugin implements CallbackListener, CallQueueListener, Command $mysqli->query("ALTER TABLE `" . self::TABLE_RECORDS . "` ADD `checkpoints` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL"); if ($mysqli->error) { - if ($mysqli->errno === 1062) { + if ($mysqli->errno !== 1062) { // Duplicate trigger_error($mysqli->error, E_USER_ERROR); }