This commit is contained in:
2026-09-10 10:59:37 +03:00
commit 4fc9b337c2
16 changed files with 199 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
extends RefCounted
func get_name():
return "gds.quest_log"
func run(ctx):
var quest_id = ctx.GetParam("quest_id")
var message = ctx.GetParam("message")
if quest_id == "":
ctx.LogWarning("GDS", "gds.quest_log: missing quest_id param")
return
ctx.Log("QUEST", "[" + quest_id + "] " + message)