Commit a2a97736 authored by nanahira's avatar nanahira

no death hint at the start

parent d69ad4f6
......@@ -1250,11 +1250,6 @@ ygopro.stoc_follow 'GAME_MSG', false, (buffer, info, client, server)->
if client.pos == 0
room.turn = 0
room.duel_count = room.duel_count + 1
if room.death and room.duel_count > 0
if room.death == -1
ygopro.stoc_send_chat_to_room(room, "${death_start_final}", ygopro.constants.COLORS.BABYBLUE)
else
ygopro.stoc_send_chat_to_room(room, "${death_start_extra}", ygopro.constants.COLORS.BABYBLUE)
#ygopro.stoc_send_chat_to_room(room, "LP跟踪调试信息: #{client.name} 初始LP #{client.lp}")
......
......@@ -1496,13 +1496,6 @@
room.turn = 0;
room.duel_count = room.duel_count + 1;
}
if (room.death && room.duel_count > 0) {
if (room.death === -1) {
ygopro.stoc_send_chat_to_room(room, "${death_start_final}", ygopro.constants.COLORS.BABYBLUE);
} else {
ygopro.stoc_send_chat_to_room(room, "${death_start_extra}", ygopro.constants.COLORS.BABYBLUE);
}
}
}
if (ygopro.constants.MSG[msg] === 'NEW_TURN') {
if (client.pos === 0) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment