gitignore
This commit is contained in:
parent
ca919dbcad
commit
51500979a5
|
@ -0,0 +1,33 @@
|
|||
# gradle
|
||||
|
||||
.gradle/
|
||||
build/
|
||||
out/
|
||||
classes/
|
||||
|
||||
# eclipse
|
||||
|
||||
*.launch
|
||||
|
||||
# idea
|
||||
|
||||
.idea/
|
||||
*.iml
|
||||
*.ipr
|
||||
*.iws
|
||||
|
||||
# vscode
|
||||
|
||||
.settings/
|
||||
.vscode/
|
||||
bin/
|
||||
.classpath
|
||||
.project
|
||||
|
||||
# macos
|
||||
|
||||
*.DS_Store
|
||||
|
||||
# fabric
|
||||
|
||||
run/
|
Binary file not shown.
|
@ -112,6 +112,7 @@ public class GlowstoneWireBlock extends Block{
|
|||
System.out.println("Update");
|
||||
}
|
||||
|
||||
// isnt system.out BUT will update neighors?
|
||||
public void updateNeighbors(World world, BlockPos pos){
|
||||
System.out.println("Update neighbors");
|
||||
if (world.getBlockState(pos).isOf(this)) {
|
||||
|
|
Loading…
Reference in New Issue