remove test thing

This commit is contained in:
olebeck 2023-05-30 16:35:38 +02:00
parent ef1b2b7025
commit f769573900
2 changed files with 1 additions and 5 deletions

View File

@ -22,9 +22,7 @@ type secondaryUser struct {
server *server.Server
proxy *utils.ProxyContext
ispre118 bool
hasCustomBlocks bool
ispre118 bool
chunks map[world.ChunkPos]*chunk.Chunk
blockNBTs map[protocol.BlockPos][]map[string]any
dimension world.Dimension

View File

@ -4,7 +4,6 @@ import (
"context"
"flag"
seconduser "github.com/bedrock-tool/bedrocktool/handlers/second-user"
"github.com/bedrock-tool/bedrocktool/locale"
"github.com/bedrock-tool/bedrocktool/utils"
)
@ -31,7 +30,6 @@ func (c *DebugProxyCMD) Execute(ctx context.Context, ui utils.UI) error {
if err != nil {
return err
}
proxy.AddHandler(seconduser.NewSecondUser())
return proxy.Run(ctx, address, hostname)
}