Time Nick Message 01:26 MarkSill Hello everyone 17:10 Excalibur_ I am currently trying to make a mod with glowing blocks that emit light, and are animated to give the effect of glowing. I have gotten it so that the blocks are animated, but I was wondering, what are the downsides to animated blocks? 17:11 PilzAdam basically nothing 17:11 PilzAdam whole oceans are animated and it works just fine 17:11 Excalibur_ Ok. 17:12 Excalibur_ Thanks! 18:28 ExcaliburZero I have finished the basic parts of a mod I am working on, and I think it is ready to upload. Though how should I upload it? I've heard of GitHub, but I'm not sure how to use it. 18:29 PilzAdam create a .zip archive of the mod and upload it here: http://ompldr.org/ 18:31 ExcaliburZero Thanks! 18:37 ExcaliburZero One more question. What are the exact names for the colored dye objects? 18:39 PilzAdam you mean like dye:white dye:green ? 18:39 ExcaliburZero Yes. 18:39 ExcaliburZero Thanks! 18:49 ExcaliburZero I tried using the dyes in the crafting recipes for several items (each a different color), using a different dye for each color. However when I tested it out, all dyes outputted the first color of the node. 18:50 ExcaliburZero How can I fix this? 18:54 ExcaliburZero Never-mind, I found my mistake. 21:17 ExcaliburZero Currently I am trying to upload the files for a mod I am working on onto GitHub. I've already added the files to be committed, but when I try to commit them it says it commits them, but when I check the repository on Git Hub it hasn't changed. Does anyone know how to correctly update it? 21:21 PilzAdam have you pushed your commits? 21:22 ExcaliburZero I think I did, but I'm not sure. 21:23 ExcaliburZero I used the "git commit -m" function, I think. 21:23 PilzAdam then you need to "git push origin master" 21:23 PilzAdam this uploads it to the repo on github 21:26 ExcaliburZero That worked. 21:27 ExcaliburZero One more question, how do you remove a file from the GitHub repository? 21:27 PilzAdam git rm file 21:27 PilzAdam git commit -m "Remove file" 21:27 PilzAdam git push origin master 21:28 ExcaliburZero That worked, Thanks!