Compare commits
2 Commits
05944fe17a
...
c5c186a123
Author | SHA1 | Date | |
---|---|---|---|
c5c186a123 | |||
9e11db0433 |
@ -84,6 +84,12 @@ mod.worn_items_inv = 'list[current_player;worn;0,3.5;2,4;]'
|
||||
mod.empty_button = 'image_button[2.25,2;1,1;transparent_button.png;dinv_empty_craft;Empty]'
|
||||
mod.fill_button = 'image_button[2.25,1;1,1;transparent_button.png;dinv_fill_craft;Fill]'
|
||||
|
||||
-- backguard compatibility for older default mod, game pre 5.1 release
|
||||
if not minetest.global_exists("default.chest") then
|
||||
default.chest = {}
|
||||
default.chest.get_chest_formspec = default.get_chest_formspec
|
||||
minetest.log("warning", "[dinv] using older chest api from default mod")
|
||||
end
|
||||
|
||||
-- All this is necessary to add scroll buttons to chests.
|
||||
if ADD_SCROLL_TO_DEFAULT_CHEST then
|
||||
@ -831,7 +837,11 @@ function mod.set_armor_textures(player)
|
||||
end
|
||||
end
|
||||
textures = { tex }
|
||||
player_api.set_textures(player, textures)
|
||||
if minetest.get_modpath("player_api") then
|
||||
player_api.set_textures(player, textures)
|
||||
else
|
||||
default.player_set_textures(player, textures)
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
|
Before Width: | Height: | Size: 382 B After Width: | Height: | Size: 197 B |
Before Width: | Height: | Size: 427 B After Width: | Height: | Size: 288 B |
Before Width: | Height: | Size: 322 B After Width: | Height: | Size: 198 B |
Before Width: | Height: | Size: 164 B After Width: | Height: | Size: 97 B |
Before Width: | Height: | Size: 222 B After Width: | Height: | Size: 135 B |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 969 B |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 833 B |
Before Width: | Height: | Size: 459 B After Width: | Height: | Size: 344 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 854 B |
Before Width: | Height: | Size: 311 B After Width: | Height: | Size: 205 B |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 825 B |
Before Width: | Height: | Size: 375 B After Width: | Height: | Size: 250 B |
Before Width: | Height: | Size: 340 B After Width: | Height: | Size: 210 B |
Before Width: | Height: | Size: 221 B After Width: | Height: | Size: 132 B |
Before Width: | Height: | Size: 241 B After Width: | Height: | Size: 159 B |
Before Width: | Height: | Size: 418 B After Width: | Height: | Size: 257 B |
Before Width: | Height: | Size: 236 B After Width: | Height: | Size: 153 B |
Before Width: | Height: | Size: 186 B After Width: | Height: | Size: 106 B |
Before Width: | Height: | Size: 642 B After Width: | Height: | Size: 444 B |
Before Width: | Height: | Size: 144 B After Width: | Height: | Size: 85 B |