mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-04 18:29:41 +01:00
Fix mixed indentation in Scripts.cpp
Only 3 lines, which is really impressive and the lowest amount of mixed indentation so far.
This commit is contained in:
parent
c33caefae8
commit
b0e1079611
1 changed files with 3 additions and 3 deletions
|
@ -14,7 +14,7 @@ void scriptclass::load(std::string t)
|
||||||
commands.clear();
|
commands.clear();
|
||||||
running = true;
|
running = true;
|
||||||
|
|
||||||
int maxlength = (std::min(int(t.length()),7));
|
int maxlength = (std::min(int(t.length()),7));
|
||||||
std::string customstring="";
|
std::string customstring="";
|
||||||
for(int i=0; i<maxlength; i++){
|
for(int i=0; i<maxlength; i++){
|
||||||
customstring+=t[i];
|
customstring+=t[i];
|
||||||
|
@ -694,7 +694,7 @@ void scriptclass::load(std::string t)
|
||||||
|
|
||||||
add("endcutscene()");
|
add("endcutscene()");
|
||||||
add("untilbars()");
|
add("untilbars()");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (t == "communicationstation")
|
if (t == "communicationstation")
|
||||||
{
|
{
|
||||||
|
@ -1091,7 +1091,7 @@ void scriptclass::load(std::string t)
|
||||||
|
|
||||||
add("changeplayercolour(yellow)");
|
add("changeplayercolour(yellow)");
|
||||||
add("gotoroom(15,9)");
|
add("gotoroom(15,9)");
|
||||||
//(6*8)-21
|
//(6*8)-21
|
||||||
add("gotoposition(300,27,0)");
|
add("gotoposition(300,27,0)");
|
||||||
|
|
||||||
add("hideplayer()");
|
add("hideplayer()");
|
||||||
|
|
Loading…
Reference in a new issue