File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -64,22 +64,17 @@ public static class SelectLevelEventPanel_Awake_Patch
6464 {
6565 private static readonly LevelEventType [ ] hiddenEvents = new LevelEventType [ ]
6666 {
67- LevelEventType . AdvanceText ,
68- LevelEventType . ShowSubdivisionsRows ,
69- LevelEventType . CommentShow ,
70- LevelEventType . WindowResize ,
71- LevelEventType . ReadNarration ,
72- LevelEventType . NarrateRowInfo
7367 } ;
68+ //no more hidden events for u lol
7469
7570 public static void Prefix ( RDLevelEditor . SelectLevelEventPanel __instance )
7671 {
77- // Filter out hidden events from availableEvents
78- //(idk why but this doesn't even work lmao)
7972 var field = typeof ( RDLevelEditor . SelectLevelEventPanel ) . GetField ( "hiddenEvents" , BindingFlags . NonPublic | BindingFlags . Instance ) ;
8073 if ( field != null )
8174 {
8275 field . SetValue ( __instance , hiddenEvents ) ;
76+ // Add debug logging
77+ Console . WriteLine ( "Hidden events force enabled" ) ;
8378 }
8479 }
8580 }
You can’t perform that action at this time.
0 commit comments