Skip to content

Commit

Permalink
Update gitignore for vim, fixed build failure
Browse files Browse the repository at this point in the history
  • Loading branch information
keepcalm committed Jan 25, 2013
1 parent b1a509a commit 36d8eca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,7 @@ downloads
*.ipr
*.iws
BlockBreak

*.txt
.*.swp
.*.swo

2 changes: 1 addition & 1 deletion src/keepcalm/mods/bukkit/bukkitAPI/BukkitWorld.java
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ public TileEntity getTileEntityAt(final int x, final int y, final int z) {
public String getName() {
if (!this.useWorldName)
return world.provider.getDimensionName().replace(' ' , '_').toLowerCase();
return world.getWorldInfo().getWorldName().toLowerCase()t }
return world.getWorldInfo().getWorldName().toLowerCase(); }

public long getId() {
return world.getWorldInfo().getSeed();
Expand Down

0 comments on commit 36d8eca

Please sign in to comment.