minor debug change

This commit is contained in:
chmodsayshello 2022-10-10 18:51:26 +00:00
parent ef6af93901
commit e7266c2f45
1 changed files with 2 additions and 2 deletions

View File

@ -5,10 +5,10 @@ local function set_player_inventory(player)
local pickstack = ItemStack("the_bridge:diapick")
local swordstack = ItemStack("the_bridge:stonesword")
local gapplestack = ItemStack("the_bridge:gapple 16")
local knockback_stickstack = ItemStack("the_bridge:knockback_stick")
local stickstack = ItemStack("the_bridge:knockback_stick")
local inv = player:get_inventory()
local hotbar = {swordstack,pickstack,gapplestack,knockback_stickstack,stonestack,stonestack,stonestack}
local hotbar = {swordstack,pickstack,gapplestack,stickstack,stonestack,stonestack}
inv:set_list("main", hotbar)
end