#1302: 修复非官方服务器联机界左慈的化身技能导致报错的问题
This commit is contained in:
parent
6a865e0d09
commit
397b8b1e0e
|
@ -12873,7 +12873,7 @@ game.import("character", function () {
|
||||||
if (player.storage.rehuashen.current != event.card) {
|
if (player.storage.rehuashen.current != event.card) {
|
||||||
const old = player.storage.rehuashen.current;
|
const old = player.storage.rehuashen.current;
|
||||||
player.storage.rehuashen.current = event.card;
|
player.storage.rehuashen.current = event.card;
|
||||||
const sex = get.character(event.card, 0);
|
const sex = get.character(event.card).sex;
|
||||||
game.broadcastAll(
|
game.broadcastAll(
|
||||||
function (player, character, old, sex) {
|
function (player, character, old, sex) {
|
||||||
player.tempname.remove(old);
|
player.tempname.remove(old);
|
||||||
|
@ -12890,7 +12890,7 @@ game.import("character", function () {
|
||||||
"将性别变为了",
|
"将性别变为了",
|
||||||
"#y" + get.translation(sex) + "性"
|
"#y" + get.translation(sex) + "性"
|
||||||
);
|
);
|
||||||
player.changeGroup(get.character(event.card, 1));
|
player.changeGroup(get.character(event.card).group);
|
||||||
}
|
}
|
||||||
var link = result.control;
|
var link = result.control;
|
||||||
player.storage.rehuashen.current2 = link;
|
player.storage.rehuashen.current2 = link;
|
||||||
|
@ -12914,8 +12914,8 @@ game.import("character", function () {
|
||||||
player.when("dieBegin").then(() => {
|
player.when("dieBegin").then(() => {
|
||||||
const name = player.name ? player.name : player.name1;
|
const name = player.name ? player.name : player.name1;
|
||||||
if (name) {
|
if (name) {
|
||||||
const sex = get.character(name, 0);
|
const sex = get.character(name).sex;
|
||||||
const group = get.character(name, 1);
|
const group = get.character(name).group;
|
||||||
if (player.sex != sex) {
|
if (player.sex != sex) {
|
||||||
game.broadcastAll(
|
game.broadcastAll(
|
||||||
(player, sex) => {
|
(player, sex) => {
|
||||||
|
@ -13037,12 +13037,12 @@ game.import("character", function () {
|
||||||
characterInfo = get.character(node.link);
|
characterInfo = get.character(node.link);
|
||||||
let capt = get.translation(character);
|
let capt = get.translation(character);
|
||||||
if (characterInfo) {
|
if (characterInfo) {
|
||||||
capt += ` ${get.translation(characterInfo[0])}`;
|
capt += ` ${get.translation(characterInfo.sex)}`;
|
||||||
let charactergroup;
|
let charactergroup;
|
||||||
const charactergroups = get.is.double(character, true);
|
const charactergroups = get.is.double(character, true);
|
||||||
if (charactergroups)
|
if (charactergroups)
|
||||||
charactergroup = charactergroups.map((i) => get.translation(i)).join("/");
|
charactergroup = charactergroups.map((i) => get.translation(i)).join("/");
|
||||||
else charactergroup = get.translation(characterInfo[1]);
|
else charactergroup = get.translation(characterInfo.group);
|
||||||
capt += ` ${charactergroup}`;
|
capt += ` ${charactergroup}`;
|
||||||
}
|
}
|
||||||
uiintro.add(capt);
|
uiintro.add(capt);
|
||||||
|
|
Loading…
Reference in New Issue