Updated method in \RTEX\Objects\Program\Instructions\Base > ArraySet > setValue()
This commit is contained in:
parent
98744973b2
commit
4f44ad519d
1 changed files with 4 additions and 3 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue