9 lines
256 B
GDScript
9 lines
256 B
GDScript
class_name EventStartQuest extends "res://scripts/Event/Quest/EventShowQuest.gd"
|
|
|
|
@export_category("Event Start Quest")
|
|
var nothing:bool = false
|
|
|
|
func start():
|
|
assert(QUEST.quests.has(quest), "Quest not found.")
|
|
QUEST.quests[quest].start()
|
|
super.start() |