Files
Dawn-Godot/scripts/Event/Quest/EventStartQuest.gd
2025-05-20 21:34:52 -05:00

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()