Skip to content

Commit d09436c

Browse files
committed
Redirect project path
"YingLunTown-DreamLand" -> "TriM-Organization"
1 parent 2d190e3 commit d09436c

25 files changed

Lines changed: 46 additions & 46 deletions

block/block.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"fmt"
77
"strings"
88

9-
block_general "github.com/YingLunTown-DreamLand/bedrock-world-operator/block/general"
10-
"github.com/YingLunTown-DreamLand/bedrock-world-operator/define"
9+
block_general "github.com/TriM-Organization/bedrock-world-operator/block/general"
10+
"github.com/TriM-Organization/bedrock-world-operator/define"
1111
"github.com/sandertv/gophertunnel/minecraft/protocol"
1212
)
1313

block/cmd/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import (
1010
"os"
1111
"slices"
1212

13-
block_general "github.com/YingLunTown-DreamLand/bedrock-world-operator/block/general"
14-
"github.com/YingLunTown-DreamLand/bedrock-world-operator/define"
13+
block_general "github.com/TriM-Organization/bedrock-world-operator/block/general"
14+
"github.com/TriM-Organization/bedrock-world-operator/define"
1515
"github.com/sandertv/gophertunnel/minecraft/nbt"
1616
"github.com/sandertv/gophertunnel/minecraft/protocol"
1717
)

c_api/operation_chunk.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"encoding/binary"
77
"fmt"
88

9-
"github.com/YingLunTown-DreamLand/bedrock-world-operator/block"
10-
"github.com/YingLunTown-DreamLand/bedrock-world-operator/chunk"
9+
"github.com/TriM-Organization/bedrock-world-operator/block"
10+
"github.com/TriM-Organization/bedrock-world-operator/chunk"
1111
)
1212

1313
var savedChunk = NewSimpleManager[*chunk.Chunk]()

c_api/operation_conversion.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"encoding/binary"
77
"strings"
88

9-
"github.com/YingLunTown-DreamLand/bedrock-world-operator/block"
10-
"github.com/YingLunTown-DreamLand/bedrock-world-operator/chunk"
9+
"github.com/TriM-Organization/bedrock-world-operator/block"
10+
"github.com/TriM-Organization/bedrock-world-operator/chunk"
1111
"github.com/df-mc/worldupgrader/blockupgrader"
1212
"github.com/sandertv/gophertunnel/minecraft/nbt"
1313
)

c_api/operation_sub_chunk.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import "C"
44
import (
55
"encoding/binary"
66

7-
"github.com/YingLunTown-DreamLand/bedrock-world-operator/block"
8-
"github.com/YingLunTown-DreamLand/bedrock-world-operator/chunk"
7+
"github.com/TriM-Organization/bedrock-world-operator/block"
8+
"github.com/TriM-Organization/bedrock-world-operator/chunk"
99
)
1010

1111
var savedSubChunk = NewSimpleManager[*chunk.SubChunk]()

c_api/operation_world.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66
"encoding/binary"
77
"fmt"
88

9-
"github.com/YingLunTown-DreamLand/bedrock-world-operator/define"
10-
"github.com/YingLunTown-DreamLand/bedrock-world-operator/world"
11-
"github.com/YingLunTown-DreamLand/bedrock-world-operator/world/leveldat"
9+
"github.com/TriM-Organization/bedrock-world-operator/define"
10+
"github.com/TriM-Organization/bedrock-world-operator/world"
11+
"github.com/TriM-Organization/bedrock-world-operator/world/leveldat"
1212
"github.com/sandertv/gophertunnel/minecraft/nbt"
1313
)
1414

c_api/utils.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"encoding/binary"
77
"unsafe"
88

9-
"github.com/YingLunTown-DreamLand/bedrock-world-operator/chunk"
10-
"github.com/YingLunTown-DreamLand/bedrock-world-operator/define"
9+
"github.com/TriM-Organization/bedrock-world-operator/chunk"
10+
"github.com/TriM-Organization/bedrock-world-operator/define"
1111
)
1212

1313
func asCbool(b bool) C.int {

chunk/chunk.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package chunk
22

33
import (
4-
"github.com/YingLunTown-DreamLand/bedrock-world-operator/define"
4+
"github.com/TriM-Organization/bedrock-world-operator/define"
55
)
66

77
// Chunk is a segment in the world with a size of 16x16x256 blocks. A chunk contains multiple sub chunks

chunk/decode.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"bytes"
55
"fmt"
66

7-
"github.com/YingLunTown-DreamLand/bedrock-world-operator/block"
8-
"github.com/YingLunTown-DreamLand/bedrock-world-operator/define"
7+
"github.com/TriM-Organization/bedrock-world-operator/block"
8+
"github.com/TriM-Organization/bedrock-world-operator/define"
99
)
1010

1111
// NetworkDecode decodes the network serialised data passed into a Chunk if successful. If not, the chunk

chunk/encode.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"bytes"
55
"sync"
66

7-
"github.com/YingLunTown-DreamLand/bedrock-world-operator/define"
7+
"github.com/TriM-Organization/bedrock-world-operator/define"
88
)
99

1010
const (

0 commit comments

Comments
 (0)