Merge branch 'main' of https://github.com/Lucanius69/BedWars
This commit is contained in:
commit
91ef781de0
@ -99,6 +99,7 @@ public class DamageListener implements Listener {
|
||||
playerData.setLastDamager(damager);
|
||||
double health = player.getHealth() - event.getFinalDamage();
|
||||
if (health < 0) {
|
||||
event.setCancelled(true);
|
||||
this.plugin.getServer().getPluginManager().callEvent(new PlayerKillEvent(player, damager));
|
||||
}
|
||||
|
||||
|
@ -33,6 +33,7 @@ public class GameEndListener implements Listener {
|
||||
PlayerData playerData = this.plugin.getPlayerDataManager().getPlayerData(player.getUniqueId());
|
||||
playerData.setLastDamager(null);
|
||||
playerData.setGameKills(0);
|
||||
playerData.setGameBedsDestroyed(0);
|
||||
|
||||
String winnerTitle = CC.translate("&aVICTORY!");
|
||||
String losingTitle = CC.translate("&cDEFEAT!");
|
||||
|
@ -10,6 +10,7 @@ import org.bukkit.Bukkit;
|
||||
import org.bukkit.craftbukkit.v1_8_R3.entity.CraftPlayer;
|
||||
import org.bukkit.entity.Player;
|
||||
import rip.tilly.bedwars.BedWars;
|
||||
import rip.tilly.bedwars.playerdata.PlayerData;
|
||||
import rip.tilly.bedwars.utils.CC;
|
||||
|
||||
import java.util.List;
|
||||
@ -34,19 +35,33 @@ public class TablistProvider implements TabAdapter {
|
||||
int column = 0;
|
||||
int row = 0;
|
||||
for (Player online : Bukkit.getOnlinePlayers()) {
|
||||
GameProfile skin = ((CraftPlayer) online).getProfile();
|
||||
Property property = skin.getProperties().get("textures").stream().findFirst().orElse(null);
|
||||
lines.add(new TabEntry(column, row, player.getDisplayName()).setPing(((CraftPlayer) online).getHandle().ping).setSkin(new Skin(property.getValue(), property.getSignature())));
|
||||
if (online == null) {
|
||||
break;
|
||||
}
|
||||
GameProfile onlineSkin = ((CraftPlayer) online).getProfile();
|
||||
Property onlineProperty = onlineSkin.getProperties().get("textures").stream().findFirst().orElse(null);
|
||||
|
||||
assert onlineProperty != null;
|
||||
lines.add(new TabEntry(column, row, online.getDisplayName()).setPing(((CraftPlayer) online).getHandle().ping).setSkin(new Skin(onlineProperty.getValue(), onlineProperty.getSignature())));
|
||||
if (column++ < 2) {
|
||||
continue;
|
||||
}
|
||||
column = 0;
|
||||
|
||||
if (row++ < 19) {
|
||||
continue;
|
||||
}
|
||||
row = 0;
|
||||
}
|
||||
|
||||
GameProfile skin = ((CraftPlayer) player).getProfile();
|
||||
Property property = skin.getProperties().get("textures").stream().findFirst().orElse(null);
|
||||
|
||||
PlayerData playerData = this.plugin.getPlayerDataManager().getPlayerData(player.getUniqueId());
|
||||
|
||||
lines.add(new TabEntry(3, 2, CC.translate("&d&lYour Profile")).setPing(-1).setSkin(new Skin(property.getValue(), property.getSignature())));
|
||||
lines.add(new TabEntry(3, 3, CC.translate(" &fKills: &d" + playerData.getKills())).setPing(-1));
|
||||
lines.add(new TabEntry(3, 4, CC.translate(" &fDeaths: &d" + playerData.getDeaths())).setPing(-1));
|
||||
|
||||
return lines;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user