Skip to content

Commit

Permalink
Fix Roblox Studio crashing when using rbx_reflector
Browse files Browse the repository at this point in the history
  • Loading branch information
DervexDev committed Jan 26, 2025
1 parent 8e750dc commit 3af880b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions rbx_reflector/src/cli/defaults_place.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,10 @@ fn generate_place_with_all_classes(path: &PathBuf, dump: &Dump) -> anyhow::Resul
| "InternalSyncItem" => continue,

// Settings singletons cannot be put into a DataModel. This changed
// in release 653.
// in release 653 and 657.
"DebugSettings" | "GameSettings" | "LuaSettings" | "NetworkSettings"
| "PhysicsSettings" | "RenderSettings" | "Studio" | "TaskScheduler" => continue,
| "PhysicsSettings" | "RenderSettings" | "Studio" | "TaskScheduler"
| "UserGameSettings" => continue,

// This class will cause studio to crash on close.
"VoiceSource" => continue,
Expand Down

0 comments on commit 3af880b

Please sign in to comment.