Bea LaPaz

Results 4 issues of Bea LaPaz

### Version Number and Operating System(s): 2019.3.6f & Windows 10 ### Expected behavior: When implementing the lobby system, all players should show in the lobby no matter if they join...

This fixes a common issue myself and others are running into with the lobby system not showing players that connected prior to new players connections to the lobby. This code...

To avoid addition when attempting to subtract, [this line](https://github.com/TimeLoad00/Klip/blob/master/KlipRT/KlipRT/Runtime.cs#L123) ```stack.Push(value1 + value2);``` in the ```else if (opcode == Opcodes.sub)``` block should be changed to ```stack.Push(value2 - value1);``` ``` else if...

**file.txt** ``` import system function Main() { name = "test" PrintLine(name) // Prints "test" PrintLine(name) // Prints 0 } ``` When the [call block](https://github.com/TimeLoad00/Klip/blob/master/KlipRT/KlipRT/Runtime.cs#L302) is run, it stores the list...