diff options
author | nokoe <nokoe@mailbox.org> | 2025-09-30 22:16:50 +0200 |
---|---|---|
committer | nokoe <nokoe@mailbox.org> | 2025-09-30 22:21:22 +0200 |
commit | eb387907613e53be1e023080500046d8d4d20f4c (patch) | |
tree | e60dd8d0740a1faaa96ebc9c0ec5614a70facc17 /client/map/items/unknown_item.gd | |
parent | f15c20e887a58ae8d65c6d4f240d74a3b74cd55d (diff) | |
download | hurrycurry-eb387907613e53be1e023080500046d8d4d20f4c.tar hurrycurry-eb387907613e53be1e023080500046d8d4d20f4c.tar.bz2 hurrycurry-eb387907613e53be1e023080500046d8d4d20f4c.tar.zst |
unknown item texture
Diffstat (limited to 'client/map/items/unknown_item.gd')
-rw-r--r-- | client/map/items/unknown_item.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/map/items/unknown_item.gd b/client/map/items/unknown_item.gd index 991f6a3e..ec6cab1a 100644 --- a/client/map/items/unknown_item.gd +++ b/client/map/items/unknown_item.gd @@ -18,7 +18,7 @@ extends Item func _init(owned_by_: Node3D, t: String): super(owned_by_) - #add_child(load("res://models/prefabs/map/bag.tscn").instantiate()) + add_child(load("res://map/items/unknown_item.tscn").instantiate()) var label = Label3D.new() label.text = t label.position.y = 0.5 |