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

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

View File

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

View File

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