Skip to content

Commit

Permalink
Update OASM.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Mistium authored May 17, 2024
1 parent 2758105 commit c2600b2
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions featured/OASM.js
Original file line number Diff line number Diff line change
Expand Up @@ -521,6 +521,12 @@
this.spl[1] = this.spl[0];
this.spl[0] = 'modv';
break;
case '-':
this.spl[0] = ''
break;
case '':
this.spl[0] = ''
break;
default:
if (this.spl[0][0] === ':') {
this.spl[1] = this.spl[0];
Expand All @@ -532,8 +538,9 @@
}
break;
}

OUT.push(this.spl.join(' '));
if (this.spl[0] !== '') {
OUT.push(this.spl.join(' '));
}
}
OUT = prep.concat(OUT)
if (errors.length > 0) {
Expand Down

0 comments on commit c2600b2

Please sign in to comment.