Skip to content

Commit c54aa9d

Browse files
committed
[ci skip] Naming consistency
1 parent 13744cc commit c54aa9d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

paper-api/src/main/java/io/papermc/paper/event/entity/CopperGolemWeatheringEvent.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ public class CopperGolemWeatheringEvent extends EntityEvent implements Cancellab
1616

1717
private static final HandlerList HANDLER_LIST = new HandlerList();
1818

19-
private final WeatheringCopperState weatherState;
19+
private final WeatheringCopperState currentWeatherState;
2020
private final WeatheringCopperState nextWeatherState;
2121

2222
private boolean cancelled;
2323

2424
@ApiStatus.Internal
25-
public CopperGolemWeatheringEvent(final CopperGolem golem, final WeatheringCopperState weatherState, final WeatheringCopperState nextWeatherState) {
25+
public CopperGolemWeatheringEvent(final CopperGolem golem, final WeatheringCopperState currentWeatherState, final WeatheringCopperState nextWeatherState) {
2626
super(golem);
27-
this.weatherState = weatherState;
27+
this.currentWeatherState = currentWeatherState;
2828
this.nextWeatherState = nextWeatherState;
2929
}
3030

@@ -43,8 +43,8 @@ public CopperGolem getEntity() {
4343
*
4444
* @return The current weathering state.
4545
*/
46-
public WeatheringCopperState getWeatheringState() {
47-
return weatherState;
46+
public WeatheringCopperState getCurrentWeatheringState() {
47+
return currentWeatherState;
4848
}
4949

5050
/**

0 commit comments

Comments
 (0)