Use the correct platform name and version for Sponge

This commit is contained in:
Matsv 2016-11-13 14:26:04 +01:00
parent 10a2df5a7d
commit 9937a173d1
1 changed files with 2 additions and 2 deletions

View File

@ -87,12 +87,12 @@ public class SpongePlugin implements ViaPlatform {
@Override
public String getPlatformName() {
return game.getPlatform().getApi().getName();
return game.getPlatform().getImplementation().getName();
}
@Override
public String getPlatformVersion() {
return game.getPlatform().getApi().getId();
return game.getPlatform().getImplementation().getVersion().orElse("Unknown Version");
}
@Override