Skip to content

Commit

Permalink
添加 README,修改游戏通关时的输出为正向 Flag
Browse files Browse the repository at this point in the history
  • Loading branch information
13m0n4de committed Oct 18, 2023
1 parent a9ffa96 commit ef5c2b9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions challenges/web/missile_trail/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# 中场休息玩个游戏

- **作者**:Only
- **参考**:-
- **难度**:Easy
- **分类**:Web
- **暴露端口**:80

## 题目描述

## 题目解析
2 changes: 1 addition & 1 deletion challenges/web/missile_trail/build/html/src/game.js
Original file line number Diff line number Diff line change
Expand Up @@ -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';}},
}
};

Expand Down

0 comments on commit ef5c2b9

Please sign in to comment.