(amount)
| 1041 | } |
| 1042 | |
| 1043 | function decreaseDanger (amount) { |
| 1044 | if (!settings.get('breakHealthMode')) { |
| 1045 | return |
| 1046 | } |
| 1047 | danger = Math.max(danger - amount, 0) |
| 1048 | log.info(`Stretchly: danger decreased to ${danger}`) |
| 1049 | } |
| 1050 | |
| 1051 | function enterManualAwaitPhase (type, shouldPlaySound) { |
| 1052 | const isMini = type === 'mini' |
no outgoing calls
no test coverage detected