Make secret doors black instead of dark grey

This commit is contained in:
2020-12-11 18:03:54 +01:00
parent 38204c7651
commit fc13f10f47
2 changed files with 4 additions and 1 deletions

View File

@@ -1,4 +1,7 @@
## v1.1.0 ## v1.1.0
### Other
- Secret doors are now tinted black instead of dark grey.
### New features ### New features
- Tint secret doors grey for the GM to differentiate them from regular doors - Tint secret doors grey for the GM to differentiate them from regular doors
- Toggle doors between secret and normal with ctrl+click - Toggle doors between secret and normal with ctrl+click

View File

@@ -1,6 +1,6 @@
import {settingsKey} from "../settings.js" import {settingsKey} from "../settings.js"
const SECRET_DOOR_TINT = 0x222222 const SECRET_DOOR_TINT = 0x000000
// Tint all secret doors dark grey // Tint all secret doors dark grey
export function onCanvasReady(currentCanvas) { export function onCanvasReady(currentCanvas) {