Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
UserNugget committed Apr 3, 2024
1 parent c9f08bf commit a8243a0
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/main/java/net/elytrium/fastmotd/dummy/DummyPlayer.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

package net.elytrium.fastmotd.dummy;

import com.velocitypowered.api.network.ProtocolState;
import com.velocitypowered.api.network.ProtocolVersion;
import com.velocitypowered.api.permission.Tristate;
import com.velocitypowered.api.proxy.ConnectionRequestBuilder;
Expand Down Expand Up @@ -172,12 +173,12 @@ public void sendResourcePackOffer(ResourcePackInfo packInfo) {

@Override
public Collection<ResourcePackInfo> getAppliedResourcePacks() {
return null;
throw new IllegalStateException();
}

@Override
public Collection<ResourcePackInfo> getPendingResourcePacks() {
return null;
throw new IllegalStateException();
}

@Override
Expand Down Expand Up @@ -230,6 +231,11 @@ public ProtocolVersion getProtocolVersion() {
return null;
}

@Override
public ProtocolState getProtocolState() {
return null;
}

@Override
public IdentifiedKey getIdentifiedKey() {
return null;
Expand Down

0 comments on commit a8243a0

Please sign in to comment.