aboutsummaryrefslogtreecommitdiff
path: root/content.go
diff options
context:
space:
mode:
Diffstat (limited to 'content.go')
-rw-r--r--content.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/content.go b/content.go
index 215beb4..653c0e3 100644
--- a/content.go
+++ b/content.go
@@ -46,7 +46,7 @@ type contentConn struct {
}
itemDefs []mt.ItemDef
- aliases []struct{ Alias, Orig string }
+ aliases []struct{ Alias, Orig string } // alias = texture hash
nodeDefs []mt.NodeDef
@@ -291,6 +291,7 @@ func (cc *ClientConn) sendMedia(filenames []string) {
var known bool
for _, f := range cc.media {
if f.name == filename {
+ log.Print("filename", filename, f.name)
mfile := struct {
Name string
Data []byte