From 84244508fdde802353af02005992183ced38f47d Mon Sep 17 00:00:00 2001 From: Spmario233 Date: Tue, 31 Oct 2023 11:50:37 +0800 Subject: [PATCH] =?UTF-8?q?=E8=81=94=E6=9C=BA=E6=A8=A1=E5=BC=8F=20?= =?UTF-8?q?=E5=9D=90=E9=AA=91=E6=A0=8F=E8=AE=BE=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- game/game.js | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/game/game.js b/game/game.js index 260f0a772..577b84173 100644 --- a/game/game.js +++ b/game/game.js @@ -44901,6 +44901,11 @@ init:false, connect:true }; + infoconfig.connect_mount_combine={ + name:'合并坐骑栏', + init:false, + connect:true + }; } for(var j in infoconfig){ if(j==='update'){ @@ -58444,7 +58449,10 @@ * 判断坐骑栏是否被合并 */ mountCombined:function(){ - if(typeof _status.mountCombined!='boolean'){ + if(lib.configOL){ + return lib.configOL.mount_combine; + } + else if(typeof _status.mountCombined!='boolean'){ _status.mountCombined=lib.config.mount_combine; } return _status.mountCombined;