@@ -126,27 +126,27 @@ public void Draw()
126
126
127
127
IpcTester . DrawIntro ( SetTemporaryModSettings . Label , "Set Temporary Mod Settings (to default) in specific Collection" ) ;
128
128
if ( ImUtf8 . Button ( "Set##SetTemporary"u8 ) )
129
- _lastTempError = new SetTemporaryModSettings ( pi ) . Invoke ( guid , _modDirectory , string . Empty , false , true , 1337 , new Dictionary < string , IReadOnlyList < string > > ( ) ,
129
+ _lastTempError = new SetTemporaryModSettings ( pi ) . Invoke ( guid , _modDirectory , false , true , 1337 , new Dictionary < string , IReadOnlyList < string > > ( ) ,
130
130
"IPC Tester" , 1337 ) ;
131
131
132
132
IpcTester . DrawIntro ( SetTemporaryModSettingsPlayer . Label , "Set Temporary Mod Settings (to default) in game object collection" ) ;
133
133
if ( ImUtf8 . Button ( "Set##SetTemporaryPlayer"u8 ) )
134
- _lastTempError = new SetTemporaryModSettingsPlayer ( pi ) . Invoke ( _tempActorIndex , _modDirectory , string . Empty , false , true , 1337 , new Dictionary < string , IReadOnlyList < string > > ( ) ,
134
+ _lastTempError = new SetTemporaryModSettingsPlayer ( pi ) . Invoke ( _tempActorIndex , _modDirectory , false , true , 1337 , new Dictionary < string , IReadOnlyList < string > > ( ) ,
135
135
"IPC Tester" , 1337 ) ;
136
136
137
137
IpcTester . DrawIntro ( RemoveTemporaryModSettings . Label , "Remove Temporary Mod Settings from specific Collection" ) ;
138
138
if ( ImUtf8 . Button ( "Remove##RemoveTemporary"u8 ) )
139
- _lastTempError = new RemoveTemporaryModSettings ( pi ) . Invoke ( guid , _modDirectory , string . Empty , 1337 ) ;
139
+ _lastTempError = new RemoveTemporaryModSettings ( pi ) . Invoke ( guid , _modDirectory , 1337 ) ;
140
140
ImGui . SameLine ( ) ;
141
141
if ( ImUtf8 . Button ( "Remove (Wrong Key)##RemoveTemporary"u8 ) )
142
- _lastTempError = new RemoveTemporaryModSettings ( pi ) . Invoke ( guid , _modDirectory , string . Empty , 1338 ) ;
142
+ _lastTempError = new RemoveTemporaryModSettings ( pi ) . Invoke ( guid , _modDirectory , 1338 ) ;
143
143
144
144
IpcTester . DrawIntro ( RemoveTemporaryModSettingsPlayer . Label , "Remove Temporary Mod Settings from game object Collection" ) ;
145
145
if ( ImUtf8 . Button ( "Remove##RemoveTemporaryPlayer"u8 ) )
146
- _lastTempError = new RemoveTemporaryModSettingsPlayer ( pi ) . Invoke ( _tempActorIndex , _modDirectory , string . Empty , 1337 ) ;
146
+ _lastTempError = new RemoveTemporaryModSettingsPlayer ( pi ) . Invoke ( _tempActorIndex , _modDirectory , 1337 ) ;
147
147
ImGui . SameLine ( ) ;
148
148
if ( ImUtf8 . Button ( "Remove (Wrong Key)##RemoveTemporaryPlayer"u8 ) )
149
- _lastTempError = new RemoveTemporaryModSettingsPlayer ( pi ) . Invoke ( _tempActorIndex , _modDirectory , string . Empty , 1338 ) ;
149
+ _lastTempError = new RemoveTemporaryModSettingsPlayer ( pi ) . Invoke ( _tempActorIndex , _modDirectory , 1338 ) ;
150
150
151
151
IpcTester . DrawIntro ( RemoveAllTemporaryModSettings . Label , "Remove All Temporary Mod Settings from specific Collection" ) ;
152
152
if ( ImUtf8 . Button ( "Remove##RemoveAllTemporary"u8 ) )
0 commit comments