Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion LabApi/Loader/Features/Plugins/Plugin.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using LabApi.Features;
using LabApi.Loader.Features.Plugins.Configuration;
using LabApi.Loader.Features.Plugins.Enums;
using System;
Expand Down Expand Up @@ -32,7 +33,7 @@ public abstract class Plugin
/// <summary>
/// The <see cref="Version"/> of LabAPI required by the <see cref="Plugin"/>.
/// </summary>
public abstract Version RequiredApiVersion { get; }
public virtual Version RequiredApiVersion { get; } = new Version(LabApiProperties.CompiledVersion);

/// <summary>
/// The <see cref="LoadPriority"/> of the <see cref="Plugin"/>.
Expand Down