3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-07-09 12:08:02 +02:00

fix: add missing methods top TestOfflinePermissible

Dieser Commit ist enthalten in:
dordsor21 2024-01-28 13:32:25 +01:00
Ursprung 763a497cdc
Commit 9ffe76dce3
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 6F2096C3F39EF392

Datei anzeigen

@ -245,6 +245,11 @@ public class TestOfflinePermissible implements OfflinePlayer, Permissible {
throw new UnsupportedOperationException("Not supported yet."); throw new UnsupportedOperationException("Not supported yet.");
} }
@Override
public @Nullable Location getRespawnLocation() {
return null;
}
@Override @Override
public void incrementStatistic(@Nonnull Statistic statistic) throws IllegalArgumentException { public void incrementStatistic(@Nonnull Statistic statistic) throws IllegalArgumentException {
@ -365,4 +370,9 @@ public class TestOfflinePermissible implements OfflinePlayer, Permissible {
return null; return null;
} }
@Override
public @Nullable Location getLocation() {
return null;
}
} }