diff options
| author | Laria Carolin Chabowski <laria@laria.me> | 2016-08-16 08:09:23 +0200 | 
|---|---|---|
| committer | Laria Carolin Chabowski <laria@laria.me> | 2016-08-16 08:09:23 +0200 | 
| commit | a6a7f2c65c68303dbc13ae4d48607936b02e4bba (patch) | |
| tree | 80bfe8b4dd2f790117ac6ef6eaa991429cfcd014 | |
| parent | 4c579bd2bb0588c9014dfa22676592088eac2639 (diff) | |
| download | gomcmap-master.tar.gz gomcmap-master.tar.bz2 gomcmap-master.zip  | |
| -rw-r--r-- | LICENSE | 2 | ||||
| -rw-r--r-- | README.markdown | 2 | ||||
| -rw-r--r-- | mcmap/block.go | 2 | ||||
| -rw-r--r-- | mcmap/chunk.go | 2 | ||||
| -rw-r--r-- | mcmap/examples/addchunk/main.go | 2 | ||||
| -rw-r--r-- | mcmap/examples/delchunk/main.go | 2 | ||||
| -rw-r--r-- | mcmap/examples/emeraldfinder/main.go | 2 | ||||
| -rw-r--r-- | mcmap/examples/mapper/blockcolors.go | 2 | ||||
| -rw-r--r-- | mcmap/examples/mapper/main.go | 2 | ||||
| -rw-r--r-- | mcmap/examples/replace/main.go | 2 | ||||
| -rw-r--r-- | mcmap/prechunk.go | 2 | ||||
| -rw-r--r-- | mcmap/regionfile.go | 2 | 
12 files changed, 12 insertions, 12 deletions
@@ -1,4 +1,4 @@ -Copyright (c) 2013 Kevin Chabowski +Copyright (c) 2013 Laria Carolin Chabowski  Permission is hereby granted, free of charge, to any person obtaining a copy of  this software and associated documentation files (the "Software"), to deal in diff --git a/README.markdown b/README.markdown index 3e493b7..0495232 100644 --- a/README.markdown +++ b/README.markdown @@ -4,7 +4,7 @@ A library for reading and modifying Minecraft maps.  ## Install -	go get github.com/kch42/gomcmap/mcmap +	go get github.com/silvasur/gomcmap/mcmap  ## Examples diff --git a/mcmap/block.go b/mcmap/block.go index 72dc9ed..e37597f 100644 --- a/mcmap/block.go +++ b/mcmap/block.go @@ -1,7 +1,7 @@  package mcmap  import ( -	"github.com/kch42/gonbt/nbt" +	"github.com/silvasur/gonbt/nbt"  )  type BlockID uint16 diff --git a/mcmap/chunk.go b/mcmap/chunk.go index 1f7f5e1..96da846 100644 --- a/mcmap/chunk.go +++ b/mcmap/chunk.go @@ -2,7 +2,7 @@ package mcmap  import (  	"errors" -	"github.com/kch42/gonbt/nbt" +	"github.com/silvasur/gonbt/nbt"  	"time"  ) diff --git a/mcmap/examples/addchunk/main.go b/mcmap/examples/addchunk/main.go index 5807d6e..be1dea1 100644 --- a/mcmap/examples/addchunk/main.go +++ b/mcmap/examples/addchunk/main.go @@ -4,7 +4,7 @@ package main  import (  	"flag"  	"fmt" -	"github.com/kch42/gomcmap/mcmap" +	"github.com/silvasur/gomcmap/mcmap"  	"os"  ) diff --git a/mcmap/examples/delchunk/main.go b/mcmap/examples/delchunk/main.go index e19aa9a..20669d9 100644 --- a/mcmap/examples/delchunk/main.go +++ b/mcmap/examples/delchunk/main.go @@ -4,7 +4,7 @@ package main  import (  	"flag"  	"fmt" -	"github.com/kch42/gomcmap/mcmap" +	"github.com/silvasur/gomcmap/mcmap"  	"os"  ) diff --git a/mcmap/examples/emeraldfinder/main.go b/mcmap/examples/emeraldfinder/main.go index ea22624..5e4abcc 100644 --- a/mcmap/examples/emeraldfinder/main.go +++ b/mcmap/examples/emeraldfinder/main.go @@ -4,7 +4,7 @@ package main  import (  	"flag"  	"fmt" -	"github.com/kch42/gomcmap/mcmap" +	"github.com/silvasur/gomcmap/mcmap"  	"os"  ) diff --git a/mcmap/examples/mapper/blockcolors.go b/mcmap/examples/mapper/blockcolors.go index a714b05..0f0600f 100644 --- a/mcmap/examples/mapper/blockcolors.go +++ b/mcmap/examples/mapper/blockcolors.go @@ -1,7 +1,7 @@  package main  import ( -	"github.com/kch42/gomcmap/mcmap" +	"github.com/silvasur/gomcmap/mcmap"  )  type rgb uint32 diff --git a/mcmap/examples/mapper/main.go b/mcmap/examples/mapper/main.go index 2b21648..99be2ef 100644 --- a/mcmap/examples/mapper/main.go +++ b/mcmap/examples/mapper/main.go @@ -4,7 +4,7 @@ package main  import (  	"flag"  	"fmt" -	"github.com/kch42/gomcmap/mcmap" +	"github.com/silvasur/gomcmap/mcmap"  	"image"  	"image/png"  	"os" diff --git a/mcmap/examples/replace/main.go b/mcmap/examples/replace/main.go index d289522..e0e922d 100644 --- a/mcmap/examples/replace/main.go +++ b/mcmap/examples/replace/main.go @@ -4,7 +4,7 @@ package main  import (  	"flag"  	"fmt" -	"github.com/kch42/gomcmap/mcmap" +	"github.com/silvasur/gomcmap/mcmap"  	"os"  ) diff --git a/mcmap/prechunk.go b/mcmap/prechunk.go index 29758c5..4410df3 100644 --- a/mcmap/prechunk.go +++ b/mcmap/prechunk.go @@ -4,7 +4,7 @@ import (  	"bytes"  	"errors"  	"fmt" -	"github.com/kch42/gonbt/nbt" +	"github.com/silvasur/gonbt/nbt"  	"time"  ) diff --git a/mcmap/regionfile.go b/mcmap/regionfile.go index 746c32d..282e454 100644 --- a/mcmap/regionfile.go +++ b/mcmap/regionfile.go @@ -3,7 +3,7 @@ package mcmap  import (  	"bytes"  	"encoding/binary" -	"github.com/kch42/kagus" +	"github.com/silvasur/kagus"  	"io"  	"time"  )  | 
