mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2025-01-08 18:09:45 +01:00
Fix mixed indentation in Script.cpp and Script.h
Looks like the person who added starting a custom level indented with spaces instead of tabs.
This commit is contained in:
parent
1310896191
commit
4657760c2d
2 changed files with 136 additions and 136 deletions
|
@ -90,7 +90,7 @@ void scriptclass::run()
|
||||||
obj.entities[player].yp += ss_toi(words[2]);
|
obj.entities[player].yp += ss_toi(words[2]);
|
||||||
scriptdelay = 1;
|
scriptdelay = 1;
|
||||||
}
|
}
|
||||||
#if !defined(NO_CUSTOM_LEVELS)
|
#if !defined(NO_CUSTOM_LEVELS)
|
||||||
if (words[0] == "warpdir")
|
if (words[0] == "warpdir")
|
||||||
{
|
{
|
||||||
int temprx=ss_toi(words[1])-1;
|
int temprx=ss_toi(words[1])-1;
|
||||||
|
@ -137,7 +137,7 @@ void scriptclass::run()
|
||||||
position--;
|
position--;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
if (words[0] == "destroy")
|
if (words[0] == "destroy")
|
||||||
{
|
{
|
||||||
if(words[1]=="gravitylines"){
|
if(words[1]=="gravitylines"){
|
||||||
|
|
Loading…
Reference in a new issue