Fix broken object crosshair

This commit is contained in:
Aaron Suen 2021-08-11 06:44:40 -04:00
parent 9abee673e5
commit de6206d6d9

View File

@ -27,7 +27,7 @@ nodecore.register_playerstep({
if pt then
if pt.type == "node" then
return crosshair(player, "crosshair.png")
elseif pt.type == "obj" then
elseif pt.type == "object" then
return crosshair(player, "object_crosshair.png")
end
end