don't try to match last_color to registered_items table, that breaks aliases

This commit is contained in:
Vanessa Dannenberg 2018-08-26 23:50:00 -04:00
parent 088b5ee120
commit 3898337fc3
1 changed files with 1 additions and 1 deletions

View File

@ -639,7 +639,7 @@ function unifieddyes.on_airbrush(itemstack, player, pointed_thing)
local player_name = player:get_player_name()
local painting_with = nil
if unifieddyes.player_current_dye[player_name] and minetest.registered_items[unifieddyes.player_current_dye[player_name]] then
if unifieddyes.player_current_dye[player_name] then
painting_with = unifieddyes.player_current_dye[player_name]
end