6 lines
192 B
GDScript
6 lines
192 B
GDScript
class_name EventStartQuest extends "res://scripts/Event/Quest/EventShowQuest.gd"
|
|
|
|
func start():
|
|
assert(QUEST.quests.has(quest), "Quest not found.")
|
|
QUEST.quests[quest].start()
|
|
super.start() |