some few fixes that don't fix anything

This commit is contained in:
2026-04-13 16:34:23 +02:00
parent 1d856fd937
commit 4d10f4e9d7
11 changed files with 58 additions and 32 deletions

View File

@@ -20,11 +20,8 @@ public class RaiseEventTagExecution(TagContainer eventTags) : CustomExecution
{
public override ModifierEvaluatedData[] EvaluateExecution(Effect effect, IForgeEntity target, EffectEvaluatedData? effectEvaluatedData)
{
GD.Print("Custom execution executed");
var owner = effect.Ownership.Owner;
if (owner == null) return [];
GD.Print(eventTags.Tags.Count);
foreach (var tag in eventTags.Tags)
{
GD.Print(tag);
@@ -45,7 +42,7 @@ public class RaiseEventTagExecution(TagContainer eventTags) : CustomExecution
[GlobalClass]
public partial class ForgeRaiseEventTagExecution : ForgeCustomExecution
{
[Export] ForgeTagContainer EventTags { get; set; } = new();
[Export] ForgeTagContainer EventTags { get; set; }
public override CustomExecution GetExecutionClass()
{