fix hermes?

This commit is contained in:
Talia-12 2023-04-05 18:35:39 +10:00
parent 544fa2ac3c
commit 09bc232d40
2 changed files with 2 additions and 2 deletions

View file

@ -8,7 +8,7 @@ import org.jetbrains.annotations.Nullable;
*
* @param sound the actual sound file
* @param priority the priority of this sound. the sound with the highest priority in a given cast will be
* playd.
* played.
* shortcutMetacasting takes precedence over this.
*/
public record EvalSound(@Nullable SoundEvent sound, int priority) {

View file

@ -34,6 +34,6 @@ object OpEval : Action {
val instrsList = instrs.map({ SpellList.LList(0, listOf(PatternIota(it))) }, { it })
val frame = FrameEvaluate(instrsList, true)
return OperationResult(listOf(), userData, listOf(), newCont.pushFrame(frame))
return OperationResult(stack, userData, listOf(), newCont.pushFrame(frame))
}
}