mirror of
https://github.com/NotAKidoS/NAK_CVR_Mods.git
synced 2025-09-03 14:59:23 +00:00
[YouAreMyPropNowWeAreHavingSoftTacosLater] fix accessors
This commit is contained in:
parent
21b791083b
commit
377b365cdc
1 changed files with 6 additions and 6 deletions
|
@ -23,19 +23,19 @@ public class YouAreMyPropNowWeAreHavingSoftTacosLaterMod : MelonMod
|
||||||
{
|
{
|
||||||
#region Melon Preferences
|
#region Melon Preferences
|
||||||
|
|
||||||
public static readonly MelonPreferences_Category Category =
|
private static readonly MelonPreferences_Category Category =
|
||||||
MelonPreferences.CreateCategory(nameof(YouAreMyPropNowWeAreHavingSoftTacosLaterMod));
|
MelonPreferences.CreateCategory(nameof(YouAreMyPropNowWeAreHavingSoftTacosLater));
|
||||||
|
|
||||||
public static readonly MelonPreferences_Entry<bool> EntryTrackPickups =
|
private static readonly MelonPreferences_Entry<bool> EntryTrackPickups =
|
||||||
Category.CreateEntry("track_pickups", true, display_name: "Track Pickups", description: "Should pickups be tracked?");
|
Category.CreateEntry("track_pickups", true, display_name: "Track Pickups", description: "Should pickups be tracked?");
|
||||||
|
|
||||||
public static readonly MelonPreferences_Entry<bool> EntryTrackAttachments =
|
private static readonly MelonPreferences_Entry<bool> EntryTrackAttachments =
|
||||||
Category.CreateEntry("track_attachments", true, display_name: "Track Attachments", description: "Should attachments be tracked?");
|
Category.CreateEntry("track_attachments", true, display_name: "Track Attachments", description: "Should attachments be tracked?");
|
||||||
|
|
||||||
public static readonly MelonPreferences_Entry<bool> EntryTrackSeats =
|
private static readonly MelonPreferences_Entry<bool> EntryTrackSeats =
|
||||||
Category.CreateEntry("track_seats", true, display_name: "Track Seats", description: "Should seats be tracked?");
|
Category.CreateEntry("track_seats", true, display_name: "Track Seats", description: "Should seats be tracked?");
|
||||||
|
|
||||||
public static readonly MelonPreferences_Entry<bool> EntryOnlySpawnedByMe =
|
private static readonly MelonPreferences_Entry<bool> EntryOnlySpawnedByMe =
|
||||||
Category.CreateEntry("only_spawned_by_me", true, display_name: "Only Spawned By Me", description: "Should only props spawned by me be tracked?");
|
Category.CreateEntry("only_spawned_by_me", true, display_name: "Only Spawned By Me", description: "Should only props spawned by me be tracked?");
|
||||||
|
|
||||||
#endregion Melon Preferences
|
#endregion Melon Preferences
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue