/** * Retrieves possible tab completions for the requested command string and sends them to the client */ public void processTabComplete(C14PacketTabComplete packetIn) { PacketThreadUtil.checkThreadAndEnqueue(packetIn, this, this.playerEntity.getServerForPlayer()); List<String> list = Lists.<String>newArrayList(); for (String s : this.serverController.getTabCompletions(this.playerEntity, packetIn.getMessage(), packetIn.getTargetBlock())) { list.add(s); } this.playerEntity.playerNetServerHandler.sendPacket(new S3APacketTabComplete((String[])list.toArray(new String[list.size()]))); }
/** * Displays the available command-completion options the server knows of */ public void handleTabComplete(S3APacketTabComplete packetIn) { PacketThreadUtil.checkThreadAndEnqueue(packetIn, this, this.gameController); String[] astring = packetIn.func_149630_c(); if (this.gameController.currentScreen instanceof GuiChat) { GuiChat guichat = (GuiChat)this.gameController.currentScreen; guichat.onAutocompleteResponse(astring); } }
/** * Displays the available command-completion options the server knows of */ public void handleTabComplete(S3APacketTabComplete packetIn) { PacketThreadUtil.checkThreadAndEnqueue(packetIn, this, this.gameController); String[] astring = packetIn.func_149630_c(); if (this.gameController.currentScreen instanceof GuiChat) { GuiChat guichat = (GuiChat) this.gameController.currentScreen; guichat.onAutocompleteResponse(astring); } }
/** * Retrieves possible tab completions for the requested command string and sends them to the client */ public void processTabComplete(C14PacketTabComplete p_147341_1_) { ArrayList var2 = Lists.newArrayList(); Iterator var3 = this.serverController.getPossibleCompletions(this.playerEntity, p_147341_1_.func_149419_c()).iterator(); while (var3.hasNext()) { String var4 = (String)var3.next(); var2.add(var4); } this.playerEntity.playerNetServerHandler.sendPacket(new S3APacketTabComplete((String[])var2.toArray(new String[var2.size()]))); }
/** * Displays the available command-completion options the server knows of */ public void handleTabComplete(S3APacketTabComplete p_147274_1_) { String[] var2 = p_147274_1_.func_149630_c(); if (this.gameController.currentScreen instanceof GuiChat) { GuiChat var3 = (GuiChat)this.gameController.currentScreen; var3.func_146406_a(var2); } }
public void processTabComplete(C14PacketTabComplete p_147341_1_) { ArrayList arraylist = Lists.newArrayList(); Iterator iterator = this.serverController.getPossibleCompletions(this.playerEntity, p_147341_1_.func_149419_c()).iterator(); while (iterator.hasNext()) { String s = (String)iterator.next(); arraylist.add(s); } this.playerEntity.playerNetServerHandler.sendPacket(new S3APacketTabComplete((String[])arraylist.toArray(new String[arraylist.size()]))); }
public void handleTabComplete(S3APacketTabComplete p_147274_1_) { String[] astring = p_147274_1_.func_149630_c(); if (this.gameController.currentScreen instanceof GuiChat) { GuiChat guichat = (GuiChat)this.gameController.currentScreen; guichat.func_146406_a(astring); } }
/** * Displays the available command-completion options the server knows of */ void handleTabComplete(S3APacketTabComplete packetIn);
/** * Displays the available command-completion options the server knows of */ void handleTabComplete(S3APacketTabComplete var1);
void handleTabComplete(S3APacketTabComplete p_147274_1_);