Skip to content

Commit feca4a0

Browse files
committed
missing RGB armor from earlier update, update to 1.3.2 with new accessories
1 parent 25f8cc0 commit feca4a0

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

ClickerCompat.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -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)

build.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
author = DivermanSam, Barometz and direwolf420
2-
version = 1.3.1.2
2+
version = 1.3.2
33
displayName = The Clicker Class Example Mod
44
homepage = https://github.com/SamsonAllen13/ClickerClassExampleMod
55
includePDB = true

description.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
ClickerClassExampleMod: An Example Mod for Clicker Class compatibility.
2-
Check the homepage for instructions. If you need help: https://discord.com/invite/ZyYdrZg for the Thorium Mod discord (where the clicker class channel is)
2+
Check the homepage for instructions. If you need help: https://discord.com/invite/csumDgv for the Thorium Mod discord (where the clicker class channel is)

0 commit comments

Comments
 (0)