From 6ca52a92333aaea0e7400bf79603b2d23d08469f Mon Sep 17 00:00:00 2001 From: Ryan Reed Date: Wed, 2 Apr 2025 21:42:02 -0400 Subject: [PATCH] fix: default item_texture value --- resources/db_item_resource.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/db_item_resource.gd b/resources/db_item_resource.gd index ec390b1..89a511f 100644 --- a/resources/db_item_resource.gd +++ b/resources/db_item_resource.gd @@ -6,4 +6,4 @@ extends Resource @export var name: String = "Item Name" @export var amount: int = 0 @export var description: String = "Item Description" -@export_file var item_texture: String = "res://assets/icon.svg" +@export_file var item_texture: String = "res://assets/godot-icon.svg"