lcy
7 天以前 3b64befcd8b2ab5abef1a33c5c8f73a6b245aff0
136 子 【挑战】战锤秘境 / 【挑战】战锤秘境-客户端 修改战场名
2个文件已修改
6 ■■■■ 已修改文件
Main/System/Battle/BattleField/StoryBoneBattleField.cs 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Main/System/Battle/BattleFieldFactory.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Main/System/Battle/BattleField/StoryBoneBattleField.cs
@@ -4,7 +4,7 @@
using System.Collections.Generic;
public class StoryBoneBattleField : BattleField
public class BoneBattleField : BattleField
{
    protected int chapter;//   章节
    protected int wave;//  波数
@@ -16,7 +16,7 @@
    protected MainLevelConfig levelConfig;
    public StoryBoneBattleField(string _guid) : base(_guid)
    public BoneBattleField(string _guid) : base(_guid)
    {
    }
Main/System/Battle/BattleFieldFactory.cs
@@ -21,7 +21,7 @@
                battleField = new StoryBossBattleField(guid);
                break;
            case 30010:
                battleField = new StoryBoneBattleField(guid);
                battleField = new BoneBattleField(guid);
                break;
            default:
                break;