Untested Signed-off-by: Lixfel <agga-games@gmx.de>
Dieser Commit ist enthalten in:
Ursprung
79413434f7
Commit
e3535c379a
@ -48,6 +48,7 @@ dependencies {
|
|||||||
compileOnly 'com.mojang:datafixerupper:4.0.26'
|
compileOnly 'com.mojang:datafixerupper:4.0.26'
|
||||||
compileOnly 'io.netty:netty-all:4.1.68.Final'
|
compileOnly 'io.netty:netty-all:4.1.68.Final'
|
||||||
compileOnly 'com.mojang:authlib:1.5.25'
|
compileOnly 'com.mojang:authlib:1.5.25'
|
||||||
|
compileOnly 'it.unimi.dsi:fastutil:8.5.6'
|
||||||
|
|
||||||
compileOnly swdep("Spigot-1.18")
|
compileOnly swdep("Spigot-1.18")
|
||||||
compileOnly swdep("WorldEdit-1.15")
|
compileOnly swdep("WorldEdit-1.15")
|
||||||
|
@ -0,0 +1,69 @@
|
|||||||
|
/*
|
||||||
|
* This file is a part of the SteamWar software.
|
||||||
|
*
|
||||||
|
* Copyright (C) 2024 SteamWar.de-Serverteam
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package de.steamwar.fightsystem.utils;
|
||||||
|
|
||||||
|
import com.comphenix.tinyprotocol.Reflection;
|
||||||
|
import de.steamwar.fightsystem.Config;
|
||||||
|
import it.unimi.dsi.fastutil.shorts.Short2ObjectArrayMap;
|
||||||
|
import net.minecraft.core.BlockPosition;
|
||||||
|
import net.minecraft.core.SectionPosition;
|
||||||
|
import net.minecraft.network.protocol.game.PacketPlayOutBlockChange;
|
||||||
|
import net.minecraft.network.protocol.game.PacketPlayOutMultiBlockChange;
|
||||||
|
import net.minecraft.world.level.block.state.IBlockData;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
|
||||||
|
public class HullHiderWrapper18 implements HullHiderWrapper {
|
||||||
|
|
||||||
|
private static final Reflection.MethodInvoker getState = Reflection.getTypedMethod(Reflection.getClass("{obc}.CraftBlockData"), "getState", IBlockData.class);
|
||||||
|
@Override
|
||||||
|
public Object generateBlockChangePacket(List<Hull.IntVector> changes) {
|
||||||
|
Object[] blockdata = new Object[changes.size()];
|
||||||
|
|
||||||
|
for(int i = 0; i < changes.size(); i++) {
|
||||||
|
Hull.IntVector change = changes.get(i);
|
||||||
|
blockdata[i] = getState.invoke(Config.world.getBlockData(change.getX(), change.getY(), change.getZ()));
|
||||||
|
}
|
||||||
|
|
||||||
|
return generateBlockChangePacket(changes, blockdata);
|
||||||
|
}
|
||||||
|
|
||||||
|
private Object generateBlockChangePacket(List<Hull.IntVector> changes, Object[] blockdata) {
|
||||||
|
if(changes.size() > 1) {
|
||||||
|
short[] pos = new short[changes.size()];
|
||||||
|
for(int i = 0; i < changes.size(); i++) {
|
||||||
|
Hull.IntVector change = changes.get(i);
|
||||||
|
|
||||||
|
pos[i] = (short) ((change.getX()%16) << 8 + (change.getZ()%16) << 4 + change.getY()%16);
|
||||||
|
}
|
||||||
|
|
||||||
|
Hull.IntVector section = changes.get(0);
|
||||||
|
return constructMultiBlockChange(new Hull.IntVector(section.getX() >> 4, section.getY() >> 4, section.getZ() >> 4), pos, blockdata);
|
||||||
|
} else {
|
||||||
|
Hull.IntVector pos = changes.get(0);
|
||||||
|
return new PacketPlayOutBlockChange(new BlockPosition(pos.getX(), pos.getY(), pos.getZ()), (IBlockData) blockdata[0]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
protected Object constructMultiBlockChange(Hull.IntVector section, short[] pos, Object[] blockdata) {
|
||||||
|
return new PacketPlayOutMultiBlockChange(SectionPosition.a(section.getX(), section.getY(), section.getZ()), new Short2ObjectArrayMap<>(pos, blockdata, blockdata.length), false);
|
||||||
|
}
|
||||||
|
}
|
@ -46,6 +46,7 @@ dependencies {
|
|||||||
implementation project(":FightSystem_18")
|
implementation project(":FightSystem_18")
|
||||||
|
|
||||||
compileOnly 'org.spigotmc:spigot-api:1.20-R0.1-SNAPSHOT'
|
compileOnly 'org.spigotmc:spigot-api:1.20-R0.1-SNAPSHOT'
|
||||||
|
compileOnly 'it.unimi.dsi:fastutil:8.5.6'
|
||||||
|
|
||||||
compileOnly swdep("Spigot-1.20")
|
compileOnly swdep("Spigot-1.20")
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,32 @@
|
|||||||
|
/*
|
||||||
|
* This file is a part of the SteamWar software.
|
||||||
|
*
|
||||||
|
* Copyright (C) 2024 SteamWar.de-Serverteam
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package de.steamwar.fightsystem.utils;
|
||||||
|
|
||||||
|
import it.unimi.dsi.fastutil.shorts.Short2ObjectArrayMap;
|
||||||
|
import net.minecraft.core.SectionPosition;
|
||||||
|
import net.minecraft.network.protocol.game.PacketPlayOutMultiBlockChange;
|
||||||
|
|
||||||
|
public class HullHiderWrapper20 extends HullHiderWrapper18 {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected Object constructMultiBlockChange(Hull.IntVector section, short[] pos, Object[] blockdata) {
|
||||||
|
return new PacketPlayOutMultiBlockChange(SectionPosition.a(section.getX(), section.getY(), section.getZ()), new Short2ObjectArrayMap<>(pos, blockdata, blockdata.length));
|
||||||
|
}
|
||||||
|
}
|
@ -19,10 +19,12 @@
|
|||||||
|
|
||||||
package de.steamwar.fightsystem.utils;
|
package de.steamwar.fightsystem.utils;
|
||||||
|
|
||||||
|
import com.comphenix.tinyprotocol.TinyProtocol;
|
||||||
import de.steamwar.entity.REntity;
|
import de.steamwar.entity.REntity;
|
||||||
import de.steamwar.fightsystem.Config;
|
import de.steamwar.fightsystem.Config;
|
||||||
import de.steamwar.fightsystem.FightSystem;
|
import de.steamwar.fightsystem.FightSystem;
|
||||||
import de.steamwar.fightsystem.fight.FightTeam;
|
import de.steamwar.fightsystem.fight.FightTeam;
|
||||||
|
import lombok.Getter;
|
||||||
import org.bukkit.Location;
|
import org.bukkit.Location;
|
||||||
import org.bukkit.Material;
|
import org.bukkit.Material;
|
||||||
import org.bukkit.block.Block;
|
import org.bukkit.block.Block;
|
||||||
@ -45,6 +47,7 @@ public class Hull {
|
|||||||
private final BitSet occluding;
|
private final BitSet occluding;
|
||||||
private final BitSet visibility;
|
private final BitSet visibility;
|
||||||
private final Map<IntVector, Map<IntVector, BitSet>> blockVisibility = new HashMap<>();
|
private final Map<IntVector, Map<IntVector, BitSet>> blockVisibility = new HashMap<>();
|
||||||
|
private final Set<IntVector> uncoveredSurface = new HashSet<>();
|
||||||
|
|
||||||
private final Set<Player> players = new HashSet<>();
|
private final Set<Player> players = new HashSet<>();
|
||||||
private final Set<Entity> entities = new HashSet<>();
|
private final Set<Entity> entities = new HashSet<>();
|
||||||
@ -90,6 +93,10 @@ public class Hull {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public boolean isBlockHidden(Player player, int x, int y, int z) {
|
||||||
|
return players.contains(player) && region.inRegion(x, y, z) && !visibility.get(((y - region.getMinY()) * region.getSizeZ() + (z - region.getMinZ())) * region.getSizeX() + (x - region.getMinX()));
|
||||||
|
}
|
||||||
|
|
||||||
public boolean isLocationHidden(Player player, Location location) {
|
public boolean isLocationHidden(Player player, Location location) {
|
||||||
return players.contains(player) && region.inRegion(location) && !visibility.get(new IntVector(location).toId(region));
|
return players.contains(player) && region.inRegion(location) && !visibility.get(new IntVector(location).toId(region));
|
||||||
}
|
}
|
||||||
@ -107,6 +114,7 @@ public class Hull {
|
|||||||
if(players.remove(player) && activeRemoval) {
|
if(players.remove(player) && activeRemoval) {
|
||||||
for(Entity entity : entities)
|
for(Entity entity : entities)
|
||||||
player.showEntity(FightSystem.getPlugin(), entity);
|
player.showEntity(FightSystem.getPlugin(), entity);
|
||||||
|
// techhider triggers block change sending
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -147,6 +155,7 @@ public class Hull {
|
|||||||
public void initialize() {
|
public void initialize() {
|
||||||
visibility.clear();
|
visibility.clear();
|
||||||
occluding.clear();
|
occluding.clear();
|
||||||
|
uncoveredSurface.clear();
|
||||||
for (Map<IntVector, BitSet> direction : blockVisibility.values()) {
|
for (Map<IntVector, BitSet> direction : blockVisibility.values()) {
|
||||||
for (BitSet set : direction.values())
|
for (BitSet set : direction.values())
|
||||||
set.clear();
|
set.clear();
|
||||||
@ -209,6 +218,23 @@ public class Hull {
|
|||||||
entity.hide(false);
|
entity.hide(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
uncoveredSurface.addAll(uncoveredSet);
|
||||||
|
uncoveredSurface.remove(root);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void sendUncoveredBlocks() {
|
||||||
|
Map<IntVector, List<IntVector>> sectionWise = new HashMap<>();
|
||||||
|
|
||||||
|
for(IntVector uncovered : uncoveredSurface) {
|
||||||
|
sectionWise.computeIfAbsent(new IntVector(uncovered.x >> 4, uncovered.y >> 4, uncovered.z >> 4), section -> new ArrayList<>()).add(uncovered);
|
||||||
|
}
|
||||||
|
uncoveredSurface.clear();
|
||||||
|
|
||||||
|
for (Map.Entry<IntVector, List<IntVector>> entry : sectionWise.entrySet()) {
|
||||||
|
Object packet = HullHiderWrapper.impl.generateBlockChangePacket(entry.getValue());
|
||||||
|
players.forEach(player -> TinyProtocol.instance.sendPacket(player, packet));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void forEachBorder(BiConsumer<IntVector, IntVector> f) {
|
private void forEachBorder(BiConsumer<IntVector, IntVector> f) {
|
||||||
@ -280,9 +306,12 @@ public class Hull {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private static class IntVector {
|
public static class IntVector {
|
||||||
|
@Getter
|
||||||
private final int x;
|
private final int x;
|
||||||
|
@Getter
|
||||||
private final int y;
|
private final int y;
|
||||||
|
@Getter
|
||||||
private final int z;
|
private final int z;
|
||||||
|
|
||||||
public IntVector(int x, int y, int z) {
|
public IntVector(int x, int y, int z) {
|
||||||
|
@ -56,13 +56,15 @@ import java.util.function.Function;
|
|||||||
|
|
||||||
public class HullHider implements Listener {
|
public class HullHider implements Listener {
|
||||||
|
|
||||||
private static final boolean ENABLED = TechHiderWrapper.ENABLED && Core.getVersion() >= 18;
|
public static final boolean ENABLED = TechHiderWrapper.ENABLED && Core.getVersion() >= 18;
|
||||||
private final Map<FightTeam, Hull> hulls = new HashMap<>();
|
private final Map<FightTeam, Hull> hulls = new HashMap<>();
|
||||||
private final Map<Class<?>, BiFunction<Player, Object, Object>> packetHiders = new HashMap<>();
|
private final Map<Class<?>, BiFunction<Player, Object, Object>> packetHiders = new HashMap<>();
|
||||||
|
|
||||||
public HullHider() {
|
public HullHider() {
|
||||||
if(ENABLED)
|
if(!ENABLED)
|
||||||
Fight.teams().forEach(team -> hulls.put(team, new Hull(team)));
|
return;
|
||||||
|
|
||||||
|
Fight.teams().forEach(team -> hulls.put(team, new Hull(team)));
|
||||||
|
|
||||||
packetHiders.put(packetPlayOutWorldEvent, this::worldEventHider);
|
packetHiders.put(packetPlayOutWorldEvent, this::worldEventHider);
|
||||||
packetHiders.put(packetPlayOutExplosion, this::explosionHider);
|
packetHiders.put(packetPlayOutExplosion, this::explosionHider);
|
||||||
@ -137,6 +139,17 @@ public class HullHider implements Listener {
|
|||||||
hull.updateBlockVisibility(block, changedType);
|
hull.updateBlockVisibility(block, changedType);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public boolean isBlockHidden(Player player, int x, int y, int z) {
|
||||||
|
if(!ENABLED)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
for (Hull hull : hulls.values())
|
||||||
|
if(hull.isBlockHidden(player, x, y, z))
|
||||||
|
return true;
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = true)
|
@EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = true)
|
||||||
public void onSpawn(EntitySpawnEvent e) {
|
public void onSpawn(EntitySpawnEvent e) {
|
||||||
@ -148,6 +161,9 @@ public class HullHider implements Listener {
|
|||||||
for (Hull hull : hulls.values())
|
for (Hull hull : hulls.values())
|
||||||
hull.checkEntity(entity);
|
hull.checkEntity(entity);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
for (Hull hull : hulls.values())
|
||||||
|
hull.sendUncoveredBlocks();
|
||||||
}
|
}
|
||||||
|
|
||||||
@EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = true)
|
@EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = true)
|
||||||
|
@ -0,0 +1,31 @@
|
|||||||
|
/*
|
||||||
|
* This file is a part of the SteamWar software.
|
||||||
|
*
|
||||||
|
* Copyright (C) 2024 SteamWar.de-Serverteam
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package de.steamwar.fightsystem.utils;
|
||||||
|
|
||||||
|
import de.steamwar.core.VersionDependent;
|
||||||
|
import de.steamwar.fightsystem.FightSystem;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public interface HullHiderWrapper {
|
||||||
|
HullHiderWrapper impl = VersionDependent.getVersionImpl(FightSystem.getPlugin());
|
||||||
|
|
||||||
|
Object generateBlockChangePacket(List<Hull.IntVector> changes);
|
||||||
|
}
|
@ -80,6 +80,12 @@ public class Region {
|
|||||||
getMinChunkZ() > cZ || cZ > getMaxChunkZ();
|
getMinChunkZ() > cZ || cZ > getMaxChunkZ();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public boolean chunkSectionOutside(int cX, int cY, int cZ) {
|
||||||
|
return getMinChunkX() > cX || cX > getMaxChunkX() ||
|
||||||
|
ProtocolUtils.posToChunk(minY) > cY || cY > ProtocolUtils.posToChunk(maxY) ||
|
||||||
|
getMinChunkZ() > cZ || cZ > getMaxChunkZ();
|
||||||
|
}
|
||||||
|
|
||||||
public void forEachChunk(ObjIntConsumer<Integer> executor) {
|
public void forEachChunk(ObjIntConsumer<Integer> executor) {
|
||||||
for(int x = getMinChunkX(); x <= getMaxChunkX(); x++)
|
for(int x = getMinChunkX(); x <= getMaxChunkX(); x++)
|
||||||
for(int z = getMinChunkZ(); z <= getMaxChunkZ(); z++)
|
for(int z = getMinChunkZ(); z <= getMaxChunkZ(); z++)
|
||||||
|
@ -37,14 +37,17 @@ import java.util.ArrayList;
|
|||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
public class TechHiderWrapper extends StateDependent {
|
public class TechHiderWrapper extends StateDependent implements TechHider.LocationEvaluator {
|
||||||
|
|
||||||
public static final boolean ENABLED = !Config.OnlyPublicSchematics && !Config.test() && Config.TechhiderActive;
|
public static final boolean ENABLED = !Config.OnlyPublicSchematics && !Config.test() && Config.TechhiderActive;
|
||||||
|
|
||||||
|
private final Region empty = Region.fromSize(-10000, -10000, -10000, 0, 0, 0);
|
||||||
|
|
||||||
private final TechHider techHider;
|
private final TechHider techHider;
|
||||||
|
|
||||||
public TechHiderWrapper() {
|
public TechHiderWrapper() {
|
||||||
super(ENABLED, FightState.Schem);
|
super(ENABLED, FightState.Schem);
|
||||||
techHider = new TechHider(this::bypass, Material.getMaterial(Config.ObfuscateWith), Config.HiddenBlocks, Config.HiddenBlockEntities);
|
techHider = new TechHider(this, Material.getMaterial(Config.ObfuscateWith), Config.HiddenBlocks, Config.HiddenBlockEntities);
|
||||||
register();
|
register();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -64,7 +67,7 @@ public class TechHiderWrapper extends StateDependent {
|
|||||||
|
|
||||||
List<ProtocolUtils.ChunkPos> chunksToReload = new ArrayList<>();
|
List<ProtocolUtils.ChunkPos> chunksToReload = new ArrayList<>();
|
||||||
Config.ArenaRegion.forEachChunk((x, z) -> {
|
Config.ArenaRegion.forEachChunk((x, z) -> {
|
||||||
if(bypass((Player) p, x, z) == hide)
|
if(skipChunk((Player) p, x, z) == hide)
|
||||||
chunksToReload.add(new ProtocolUtils.ChunkPos(x, z));
|
chunksToReload.add(new ProtocolUtils.ChunkPos(x, z));
|
||||||
});
|
});
|
||||||
return chunksToReload;
|
return chunksToReload;
|
||||||
@ -76,23 +79,47 @@ public class TechHiderWrapper extends StateDependent {
|
|||||||
|
|
||||||
Bukkit.getScheduler().runTaskLater(FightSystem.getPlugin(), () -> {
|
Bukkit.getScheduler().runTaskLater(FightSystem.getPlugin(), () -> {
|
||||||
for(ProtocolUtils.ChunkPos chunk : chunksToReload){
|
for(ProtocolUtils.ChunkPos chunk : chunksToReload){
|
||||||
if(bypass(p, chunk.x(), chunk.z()) != hide)
|
if(skipChunk(p, chunk.x(), chunk.z()) != hide)
|
||||||
CraftbukkitWrapper.impl.sendChunk(p, chunk.x(), chunk.z());
|
CraftbukkitWrapper.impl.sendChunk(p, chunk.x(), chunk.z());
|
||||||
}
|
}
|
||||||
}, 40);
|
}, 40);
|
||||||
}
|
}
|
||||||
|
|
||||||
private boolean bypass(Player p, int chunkX, int chunkZ){
|
@Override
|
||||||
if(Config.isReferee(p))
|
public boolean skipChunk(Player player, int chunkX, int chunkZ) {
|
||||||
return true;
|
return getHiddenRegion(player).chunkOutside(chunkX, chunkZ);
|
||||||
|
}
|
||||||
|
|
||||||
FightTeam ft = Fight.getPlayerTeam(p);
|
@Override
|
||||||
if(ft == null){
|
public boolean skipChunkSection(Player player, int chunkX, int chunkY, int chunkZ) {
|
||||||
return Config.ArenaRegion.chunkOutside(chunkX, chunkZ);
|
//TODO chunkhider skip sections
|
||||||
}else if(ft.isBlue()){
|
return getHiddenRegion(player).chunkSectionOutside(chunkX, chunkY, chunkZ);
|
||||||
return ft.canPlayerEntern(p) || Config.RedExtendRegion.chunkOutside(chunkX, chunkZ);
|
}
|
||||||
}else{
|
|
||||||
return ft.canPlayerEntern(p) || Config.BlueExtendRegion.chunkOutside(chunkX, chunkZ);
|
@Override
|
||||||
|
public TechHider.State check(Player player, int x, int y, int z) {
|
||||||
|
if(getHiddenRegion(player).inRegion(x, y, z)) {
|
||||||
|
if(FightSystem.getHullHider().isBlockHidden(player, x, y, z)) {
|
||||||
|
return TechHider.State.HIDE;
|
||||||
|
} else {
|
||||||
|
return TechHider.State.CHECK;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return TechHider.State.SKIP;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private Region getHiddenRegion(Player player) {
|
||||||
|
if(Config.isReferee(player))
|
||||||
|
return empty;
|
||||||
|
|
||||||
|
FightTeam team = Fight.getPlayerTeam(player);
|
||||||
|
if(team == null)
|
||||||
|
return Config.ArenaRegion;
|
||||||
|
|
||||||
|
if(team.canPlayerEntern(player))
|
||||||
|
return empty;
|
||||||
|
|
||||||
|
return Fight.getOpposite(team).getExtendRegion();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren