Update leenkx/Sources/leenkx/logicnode/LeenkxSendMessageNode.hx

This commit is contained in:
2026-06-23 05:58:41 +00:00
parent 5ae6a9e698
commit db2482dbe2

View File

@ -20,6 +20,7 @@ class LeenkxSendMessageNode extends LogicNode {
} }
override function run(from:Int) { override function run(from:Int) {
#if js
var connection = inputs[1].get(); var connection = inputs[1].get();
if (connection == null) return; if (connection == null) return;
var api: String = inputs[2].get(); var api: String = inputs[2].get();
@ -348,6 +349,7 @@ class LeenkxSendMessageNode extends LogicNode {
return; return;
} }
} }
#end
} }
} }