From 4a7d634ab730d0ed93d63faedf67e6050f75728f Mon Sep 17 00:00:00 2001 From: TelepathicGrunt <40846040+TelepathicGrunt@users.noreply.github.com> Date: Sat, 1 Jun 2024 08:21:14 -0400 Subject: [PATCH] Rename EffectCures#getActions to EffectCures#getAllCures (#1047) Fixes #1038 --- src/main/java/net/neoforged/neoforge/common/EffectCure.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/net/neoforged/neoforge/common/EffectCure.java b/src/main/java/net/neoforged/neoforge/common/EffectCure.java index aa29b06fce..e26da9f6b3 100644 --- a/src/main/java/net/neoforged/neoforge/common/EffectCure.java +++ b/src/main/java/net/neoforged/neoforge/common/EffectCure.java @@ -35,7 +35,7 @@ public final class EffectCure { * This collection can be kept around, and will update itself in response to changes to the map. * See {@link ConcurrentHashMap#values()} for details. */ - public static Collection getActions() { + public static Collection getAllCures() { return Collections.unmodifiableCollection(CURES.values()); }