소스 검색
Fix a typo and a missing exit argument
tags/v0.1.2
No known key found for this signature in database
GPG 키 ID: E80B35A6F11C3656
1개의 변경된 파일과
3개의 추가작업 그리고
2개의 파일을 삭제
-
stories/demo.js
|
|
|
@@ -99,9 +99,10 @@ stories.push({ |
|
|
|
}, |
|
|
|
"descend": { |
|
|
|
"target": "Stairs", |
|
|
|
"desc": "Dare you go down the stiars?", |
|
|
|
"desc": "Dare you go down the stairs?", |
|
|
|
"hooks": [ |
|
|
|
(room, state) => { |
|
|
|
(room, exit, state) => { |
|
|
|
console.log(state) |
|
|
|
print(["You're very concerned that you'll fall down all these stairs."]); |
|
|
|
return false; |
|
|
|
} |
|
|
|
|