Updated method in \RTEX\Objects\Program\Instructions\Base > ArraySet > setValue()

This commit is contained in:
Netkas 2022-12-30 03:23:47 -05:00
parent 98744973b2
commit 4f44ad519d

View file

@ -96,11 +96,12 @@
}
/**
* @param mixed $Value
* @param mixed $value
* @throws InstructionException
*/
public function setValue(mixed $Value): void
public function setValue(mixed $value): void
{
$this->Value = $Value;
$this->Value = InstructionBuilder::fromRaw($value);
}
/**