From a748cd7e7fe6098febd74e797f1c8e086889f4af Mon Sep 17 00:00:00 2001 From: Thomas David Baker Date: Wed, 4 Dec 2024 22:22:41 +0000 Subject: [PATCH] Fix typo in password change code --- gatherling/player.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gatherling/player.php b/gatherling/player.php index 05206d298..3c943f606 100644 --- a/gatherling/player.php +++ b/gatherling/player.php @@ -38,7 +38,7 @@ function main(): never // Handle actions if ($action == 'changePassword') { - $result = changePassword($player, post()->string('oldPasssword', ''), post()->string('newPassword'), post()->string('newPassword2')); + $result = changePassword($player, post()->string('oldPassword', ''), post()->string('newPassword'), post()->string('newPassword2')); } elseif ($action == 'editEmail') { $result = editEmail($player, post()->string('newEmail'), post()->string('newEmail2'), post()->int('emailStatus')); } elseif ($action == 'editAccounts') {