Skip to content

Commit 81f4a33

Browse files
committed
rename SignalTypes WEAK & STRONG -> DIRECT & INDIRECT
1 parent 26abaff commit 81f4a33

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/org/spongepowered/api/world/SignalTypes.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,15 @@ public final class SignalTypes {
4141
/**
4242
* Powers neighbours.
4343
*/
44-
public static final DefaultedRegistryReference<SignalType> WEAK = SignalTypes.key(ResourceKey.sponge("weak"));
44+
public static final DefaultedRegistryReference<SignalType> DIRECT = SignalTypes.key(ResourceKey.sponge("direct"));
4545

4646
/**
4747
* Goes through neighbours powering their neighbours.
4848
*/
49-
public static final DefaultedRegistryReference<SignalType> STRONG = SignalTypes.key(ResourceKey.sponge("strong"));
49+
public static final DefaultedRegistryReference<SignalType> INDIRECT = SignalTypes.key(ResourceKey.sponge("indirect"));
5050

5151
/**
52-
* The combination of {@link #WEAK} and {@link #STRONG} signals.<br>
52+
* The combination of {@link #DIRECT} and {@link #INDIRECT} signals.<br>
5353
* Usually depends on block properties to choose between these two signals
5454
* (e.g. if the block {@link SignalAwareVolume#canConductSignal(int, int, int)}).
5555
*/

0 commit comments

Comments
 (0)