Fixed issue with multilines

This commit is contained in:
Devine Lu Linvega 2017-05-24 10:15:52 -10:00
parent bd0ea1d46b
commit c8e6835614
3 changed files with 2 additions and 5 deletions

View File

@ -1,5 +1,4 @@
frame.resize 400x400
layer.fill #A1A1A1
brush:color #333333
brush:size 3
source.help
brush:size 3

View File

@ -1,5 +1,3 @@
~ Rabbits
frame.resize 795x450
source.load /01.jpg x450
source.load /hundred.rabbits.logo.white.svg 70x70 0,380

View File

@ -65,8 +65,8 @@ function Terminal(rune)
this.run_multi = function(lines)
{
lines = lines.split(";");
if(!ronin.terminal.is_locked){
lines = lines.split(";");
target_line = lines.shift();
this.run(new Command(target_line));
}