Skip to content

Commit

Permalink
Fix ImportSoundsBulk script
Browse files Browse the repository at this point in the history
  • Loading branch information
Grossley committed Mar 13, 2022
1 parent 4c0c730 commit d26f5d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions UndertaleModTool/Repackers/ImportSoundsBulk.csx
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ await Task.Run(() => {
GroupID = (needAGRP ? audioGroupID : Data.GetBuiltinSoundGroupID())
};
Data.Sounds.Add(snd_to_add);
ChangeSelection(snd_to_add);
//ChangeSelection(snd_to_add);
}
else if (replaceSoundPropertiesCheck)
{
Expand All @@ -303,7 +303,7 @@ await Task.Run(() => {
{
existing_snd.AudioFile = RaudioFile;
existing_snd.AudioID = audioID;
ChangeSelection(existing_snd);
//ChangeSelection(existing_snd);
}
}
});
Expand Down

0 comments on commit d26f5d5

Please sign in to comment.