File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ namespace RetakesPlugin;
20
20
[ MinimumApiVersion ( 201 ) ]
21
21
public class RetakesPlugin : BasePlugin
22
22
{
23
- private const string Version = "2.0.2 " ;
23
+ private const string Version = "2.0.3 " ;
24
24
25
25
#region Plugin info
26
26
public override string ModuleName => "Retakes Plugin" ;
@@ -451,8 +451,11 @@ private void OnMapStart(string mapName)
451
451
452
452
ResetState ( ) ;
453
453
454
- // Execute the retakes configuration.
455
- Helpers . ExecuteRetakesConfiguration ( ModuleDirectory ) ;
454
+ AddTimer ( 1.0f , ( ) =>
455
+ {
456
+ // Execute the retakes configuration.
457
+ Helpers . ExecuteRetakesConfiguration ( ModuleDirectory ) ;
458
+ } ) ;
456
459
457
460
// If we don't have a map config loaded, load it.
458
461
if ( ! MapConfig . IsLoaded ( _mapConfig , Server . MapName ) )
You can’t perform that action at this time.
0 commit comments