We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ec6729 commit 06ff71dCopy full SHA for 06ff71d
lua/entities/gmod_wire_fpga/init.lua
@@ -805,7 +805,11 @@ function ENT:Run(changedNodes)
805
if gate.isInput then
806
value = {self.InputValues[nodeId]}
807
elseif gate.isConstant then
808
- value = {node.value}
+ if gate.outputtypes[1] == "STRING" then
809
+ value = { WireLib.ParseEscapes(node.value) }
810
+ else
811
+ value = {node.value}
812
+ end
813
else
814
if nodeId == loopDetectionNodeId and #nodeQueue == loopDetectionSize then
815
--infinite loop...
0 commit comments