Skip to content

Commit 263011b

Browse files
committed
e
1 parent 1df48f4 commit 263011b

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

source/psychlua/FunkinLua.hx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,10 @@ class FunkinLua {
225225
set('mania', PlayState.mania);
226226
set('trueMania', Note.ammo[PlayState.mania]);
227227

228+
// function addProtectedCallback(lua:State, name:String, func:Dynamic) {
229+
230+
// }
231+
228232
//Fun cursor things for lua
229233
Lua_helper.add_callback(lua, "getCursorMode", function()
230234
{

source/states/PlayState.hx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2298,7 +2298,7 @@ class PlayState extends MusicBeatState
22982298

22992299
private function generateSong():Void
23002300
{
2301-
trace('Generating Song: ${SONG.song}');
2301+
// trace('Generating Song: ${SONG.song}');
23022302
// FlxG.log.add(ChartParser.parse());
23032303
songSpeed = PlayState.SONG.speed;
23042304
songSpeedType = ClientPrefs.getGameplaySetting('scrolltype');
@@ -7159,7 +7159,7 @@ class PlayState extends MusicBeatState
71597159
}
71607160
}
71617161

7162-
if(!cpuControlled && !ClientPrefs.getGameplaySetting('showcase', false))
7162+
if(!cpuControlled && !ClientPrefs.getGameplaySetting('showcase', false) && !note.botNote)
71637163
{
71647164
var spr = field.strumNotes[note.column];
71657165
if(spr != null) spr.playAnim('confirm', true);

0 commit comments

Comments
 (0)