Fix painting does nothing

This commit is contained in:
DBotThePony 2024-04-18 14:23:32 +07:00
parent adab78f0c0
commit bad3fd9b16
Signed by: DBot
GPG Key ID: DCC23B5715498507
2 changed files with 2 additions and 5 deletions

View File

@ -229,19 +229,16 @@ abstract class Chunk<WorldType : World<WorldType, This>, This : Chunk<WorldType,
}
protected open fun foregroundChanges(x: Int, y: Int, cell: ImmutableCell) {
cellChanges(x, y, cell)
tileChangeset++
foregroundChangeset++
}
protected open fun backgroundChanges(x: Int, y: Int, cell: ImmutableCell) {
cellChanges(x, y, cell)
tileChangeset++
backgroundChangeset++
}
protected open fun liquidChanges(x: Int, y: Int, cell: ImmutableCell) {
cellChanges(x, y, cell)
liquidChangeset++
}

View File

@ -225,8 +225,8 @@ sealed class TileModification {
}
override fun apply(world: World<*, *>, position: Vector2i, allowEntityOverlap: Boolean) {
val cell = world.getCell(position)
val tile = cell.tile(isBackground).mutable()
val cell = world.getCell(position).mutable()
val tile = cell.tile(isBackground)
tile.hueShift = 0f
tile.color = this.color
world.setCell(position, cell)