B3D: Fix incorrect reading of brush blend & fx as floats

master
Lars Mueller 2022-04-21 11:08:43 +02:00
parent b7ae328aab
commit b00c0f0d51
1 changed files with 2 additions and 2 deletions

View File

@ -113,8 +113,8 @@ function read(stream)
brush.name = string()
brush.color = color()
brush.shininess = float()
brush.blend = float()
brush.fx = float()
brush.blend = int()
brush.fx = int()
brush.texture_id = {}
for index = 1, brushes.n_texs do
brush.texture_id[index] = optional_id()