diff --git a/challenges/web/missile_trail/README.md b/challenges/web/missile_trail/README.md new file mode 100644 index 0000000..86e1bc9 --- /dev/null +++ b/challenges/web/missile_trail/README.md @@ -0,0 +1,11 @@ +# 中场休息玩个游戏 + +- **作者**:Only +- **参考**:- +- **难度**:Easy +- **分类**:Web +- **暴露端口**:80 + +## 题目描述 + +## 题目解析 diff --git a/challenges/web/missile_trail/build/html/src/game.js b/challenges/web/missile_trail/build/html/src/game.js index 71fab82..f96ad30 100644 --- a/challenges/web/missile_trail/build/html/src/game.js +++ b/challenges/web/missile_trail/build/html/src/game.js @@ -45,7 +45,7 @@ MG.game = (function () { }, FINISH: { title: function () {return 'LEVEL COMPLETED';}, - text: function () {if (mLevel === 6) {return '%FLAG%';} else {return 'CLICK TO CONTINUE';}}, + text: function () {if (mLevel === 6) {return '%FLAG%'.split('').reverse().join("");} else {return 'CLICK TO CONTINUE';}}, } };