mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-22 23:57:50 -05:00
Fix Unscripted Stage Log Trace
This commit is contained in:
parent
b167e485a1
commit
07959d3e88
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@ abstract class BaseRegistry<T:(IRegistryEntry<J> & Constructible<EntryConstructo
|
||||||
var entry:T = createEntry(entryId);
|
var entry:T = createEntry(entryId);
|
||||||
if (entry != null)
|
if (entry != null)
|
||||||
{
|
{
|
||||||
trace(' Loaded entry data: ${entry}');
|
trace(' Loaded entry data: ${entry.id}');
|
||||||
entries.set(entry.id, entry);
|
entries.set(entry.id, entry);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue