@@ -23,7 +23,7 @@ internal class ClickerCompat : ModSystem
2323
2424 //This is the version of the calls that are used for the mod.
2525 //If Clicker Class updates, it will keep working on the outdated calls, but new features might not be available
26- internal static readonly Version apiVersion = new Version ( 1 , 3 , 1 , 2 ) ;
26+ internal static readonly Version apiVersion = new Version ( 1 , 3 , 2 ) ;
2727
2828 internal static string versionString ;
2929
@@ -392,7 +392,7 @@ internal static int GetClickerAmountTotal(Player player, Item item, string effec
392392
393393 /// <summary>
394394 /// Call to check if the player is wearing a specific set. Supported sets:
395- /// Motherboard, Overclock, Precursor, Mice
395+ /// Motherboard, Overclock, Precursor, Mice, RGB
396396 /// </summary>
397397 /// <param name="player">The player</param>
398398 internal static bool GetArmorSet ( Player player , string set )
@@ -402,7 +402,7 @@ internal static bool GetArmorSet(Player player, string set)
402402
403403 /// <summary>
404404 /// Call to check if a specific accessory effect is enabled (i.e. "Gamer Crate" will have multiple effects enabled). Supported accessories:
405- /// ChocolateChip, EnchantedLED, EnchantedLED2, HandCream, StickyKeychain, GlassOfMilk, CookieVisual, CookieVisual2, ClickingGlove, AncientClickingGlove, RegalClickingGlove, GoldenTicket, PortableParticleAccelerator, IcePack, MouseTrap, HotKeychain, TriggerFinger, ButtonMasher.
405+ /// ChocolateChip, EnchantedLED, EnchantedLED2, HandCream, StickyKeychain, GlassOfMilk, CookieVisual, CookieVisual2, ClickingGlove, AncientClickingGlove, RegalClickingGlove, GoldenTicket, PortableParticleAccelerator, IcePack, MouseTrap, HotKeychain, TriggerFinger, ButtonMasher, AimAssistModule, AimbotModule .
406406 /// </summary>
407407 /// <param name="player">The player</param>
408408 internal static bool GetAccessory ( Player player , string accessory )
@@ -412,7 +412,7 @@ internal static bool GetAccessory(Player player, string accessory)
412412
413413 /// <summary>
414414 /// Call to set a specific player accessory effect (i.e. to emulate "Gamer Crate" you need to have set multiple effects). Supported accessories:
415- /// ChocolateChip, EnchantedLED, EnchantedLED2, HandCream, StickyKeychain, GlassOfMilk, CookieVisual, CookieVisual2, ClickingGlove, AncientClickingGlove, RegalClickingGlove, GoldenTicket, PortableParticleAccelerator, IcePack, MouseTrap, HotKeychain, TriggerFinger, ButtonMasher.
415+ /// ChocolateChip, EnchantedLED, EnchantedLED2, HandCream, StickyKeychain, GlassOfMilk, CookieVisual, CookieVisual2, ClickingGlove, AncientClickingGlove, RegalClickingGlove, GoldenTicket, PortableParticleAccelerator, IcePack, MouseTrap, HotKeychain, TriggerFinger, ButtonMasher, AimAssistModule, AimbotModule .
416416 /// </summary>
417417 /// <param name="player">The player</param>
418418 internal static void SetAccessory ( Player player , string accessory )
@@ -422,7 +422,7 @@ internal static void SetAccessory(Player player, string accessory)
422422
423423 /// <summary>
424424 /// Call to check if a specific accessory effect that spawns projectiles is enabled. Returns the item if enabled. Supported accessories:
425- /// Cookie, SMedal, FMedal, BottomlessBoxOfPaperclips.
425+ /// Cookie, AMedal, SMedal, FMedal, BottomlessBoxOfPaperclips.
426426 /// </summary>
427427 /// <param name="player">The player</param>
428428 internal static Item GetAccessoryItem ( Player player , string accessory )
@@ -432,7 +432,7 @@ internal static Item GetAccessoryItem(Player player, string accessory)
432432
433433 /// <summary>
434434 /// Call to set a specific player accessory effect that spawns projectiles. Supported accessories:
435- /// Cookie, SMedal, FMedal, BottomlessBoxOfPaperclips.
435+ /// Cookie, AMedal, SMedal, FMedal, BottomlessBoxOfPaperclips.
436436 /// </summary>
437437 /// <param name="player">The player</param>
438438 internal static void SetAccessoryItem ( Player player , string accessory , Item item )
0 commit comments