fix stack issue right at init

This commit is contained in:
Qrakhen 2025-12-05 14:44:41 +01:00
parent 3c72680808
commit 8e49a333c3
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ public class Runner : IDisposable
#if LOG #if LOG
_logger.Method(); _logger.Method();
#endif #endif
if (Stack.Position < 0) { if (Stack.Position != 0) {
#if LOG #if LOG
_logger.Warn($"Something went wrong, stack cursor is at {Stack.Position}. Resetting Stack."); _logger.Warn($"Something went wrong, stack cursor is at {Stack.Position}. Resetting Stack.");
#endif #endif