mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-03-30 21:51:46 +03:00
Compare commits
1 Commits
deeed00c95
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9bcade9776 |
@@ -1346,8 +1346,15 @@ void scriptclass::run(void)
|
|||||||
{
|
{
|
||||||
// Allow the gamestate command to bypass statelock, at least for now
|
// Allow the gamestate command to bypass statelock, at least for now
|
||||||
game.state = ss_toi(words[1]);
|
game.state = ss_toi(words[1]);
|
||||||
|
if (argexists[2])
|
||||||
|
{
|
||||||
|
game.statedelay = ss_toi(words[2]);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
game.statedelay = 0;
|
game.statedelay = 0;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
else if (words[0] == "textboxactive")
|
else if (words[0] == "textboxactive")
|
||||||
{
|
{
|
||||||
graphics.textboxactive();
|
graphics.textboxactive();
|
||||||
|
|||||||
Reference in New Issue
Block a user