Skip to content

Commit cdda30c

Browse files
committed
Merge branch 'Archipelago' of https://github.com/Z11Coding/Mixtape-Engine-Rework into Archipelago
2 parents a4cdcba + 263011b commit cdda30c

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
@@ -2303,7 +2303,7 @@ class PlayState extends MusicBeatState
23032303

23042304
private function generateSong():Void
23052305
{
2306-
trace('Generating Song: ${SONG.song}');
2306+
// trace('Generating Song: ${SONG.song}');
23072307
// FlxG.log.add(ChartParser.parse());
23082308
songSpeed = PlayState.SONG.speed;
23092309
songSpeedType = ClientPrefs.getGameplaySetting('scrolltype');
@@ -7164,7 +7164,7 @@ class PlayState extends MusicBeatState
71647164
}
71657165
}
71667166

7167-
if(!cpuControlled && !ClientPrefs.getGameplaySetting('showcase', false))
7167+
if(!cpuControlled && !ClientPrefs.getGameplaySetting('showcase', false) && !note.botNote)
71687168
{
71697169
var spr = field.strumNotes[note.column];
71707170
if(spr != null) spr.playAnim('confirm', true);

0 commit comments

Comments
 (0)