Tweak tour

This commit is contained in:
Starbeamrainbowlabs 2019-06-30 18:23:44 +01:00
parent 4f28e1c91e
commit c91a895f9d
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 4 additions and 2 deletions

View File

@ -145,8 +145,10 @@ class Tour {
let result = [];
if(!no_prev) result.push(prev);
if(!no_continue) result.push(next);
if(!no_continue) {
result.push(next);
result.push(exit);
}
return result;
}