Change fake floors to not be blocking; causes bad visual/audio feedback

This commit is contained in:
Eevee (Evelyn Woods) 2020-09-26 03:15:01 -06:00
parent b40805c02e
commit 967520c1bd

View File

@ -142,7 +142,8 @@ const TILE_TYPES = {
}, },
fake_floor: { fake_floor: {
draw_layer: LAYER_TERRAIN, draw_layer: LAYER_TERRAIN,
blocks_all: true, blocks_monsters: true,
blocks_blocks: true,
on_bump(me, level, other) { on_bump(me, level, other) {
if (other.type.can_reveal_walls) { if (other.type.can_reveal_walls) {
level.transmute_tile(me, 'floor'); level.transmute_tile(me, 'floor');