From 867ab8992fac80e2d4357a7ba9877d52ac8b066c Mon Sep 17 00:00:00 2001 From: deuce <> Date: Mon, 6 Apr 2020 07:25:56 +0000 Subject: [PATCH] Fix new player call. --- xtrn/lord/lord.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xtrn/lord/lord.js b/xtrn/lord/lord.js index ead50a2542..cdbf39bd6e 100644 --- a/xtrn/lord/lord.js +++ b/xtrn/lord/lord.js @@ -1602,7 +1602,7 @@ function player_new(leave_locked) pfile_init(); } if (pfile !== undefined) { - ret = pfile.new(leave_locked); + ret = pfile.new(1000, leave_locked); if (ret !== null) { ret.Yours = true; } -- GitLab