File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed 
Assets/__Scripts/MapEditor/Mapping/PlacementControllers Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -172,7 +172,9 @@ public void UpdateCut(int value)
172172            DraggedObjectContainer . NoteData . CutDirection  =  value ; 
173173            noteAppearanceSo . SetNoteAppearance ( DraggedObjectContainer ) ; 
174174        } 
175-         else  if  ( beatmapNoteInputController . QuickModificationActive  &&  Settings . Instance . QuickNoteEditing ) 
175+         // TODO: This IsActive is a workaround to prevent ghost notes. This happens because bomb placement could be 
176+         //       dragging a note and quick editing results in issues 
177+         else  if  ( IsActive  &&  beatmapNoteInputController . QuickModificationActive  &&  Settings . Instance . QuickNoteEditing ) 
176178        { 
177179            var  note  =  ObjectUnderCursor ( ) ; 
178180            if  ( note  !=  null  &&  note . ObjectData  is  BaseNote  noteData ) 
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments