11 lines
240 B
GDScript
11 lines
240 B
GDScript
extends "res://Interactions/Shopping/ShopHaver.gd"
|
|
|
|
func instantiate_shop_inventory():
|
|
var ticket = load("res://Items/Paper/FaireTicket.gd").new()
|
|
|
|
shopInventory = []
|
|
|
|
shopInventory.append(ticket)
|
|
|
|
super.instantiate_shop_inventory()
|