This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # | |
| # fix_gradle.py | |
| # | |
| # Cleanup Gradle's mess when it throws a shit-fit in the script directory. | |
| # | |
| # @author Arkan <arkan@emberwalker.cc> | |
| import os, sys, shutil |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| buildscript { | |
| repositories { | |
| mavenCentral() | |
| mavenLocal() | |
| maven { | |
| name = 'ForgeFS' | |
| url = 'http://files.minecraftforge.net/maven' | |
| } | |
| maven { | |
| name = "Sonatype" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @EventHandler (priority = EventPriority.HIGH) | |
| public void onPlayerRespawn(PlayerRespawnEvent event) { | |
| Team t = TeamManager.instance().getTeamForPlayer(event.getPlayer()); | |
| Player plr = event.getPlayer(); | |
| FileConfiguration config = plugin.getConfig(); | |
| Location spawn = null; | |
| if (event.isBedSpawn()) { | |
| Teams.log.info("[Bukkit-Teams] Sending player " + plr.getDisplayName() + " to their bed spawn."); | |
| spawn = event.getPlayer().getBedSpawnLocation(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Warning: /usr/X11 is a symlink | |
| Homebrew's X11 support has only be tested with Apple's X11. | |
| In particular, "XQuartz" and "XDarwin" are not known to be compatible. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ==> Downloading http://www.bay12games.com/dwarves/df_34_05_osx.tar.bz2 | |
| Already downloaded: /Users/Sunstrike/Library/Caches/Homebrew/dwarf-fortress-0.34.05.tar.bz2 | |
| /usr/bin/tar xf /Users/Sunstrike/Library/Caches/Homebrew/dwarf-fortress-0.34.05.tar.bz2 | |
| rmdir: /usr/local/Cellar/dwarf-fortress/0.34.05/libexec/data/movies (empty) | |
| rmdir: /usr/local/Cellar/dwarf-fortress/0.34.05/libexec/data/init/macros (empty) | |
| ==> Finishing up | |
| ln -s ../Cellar/dwarf-fortress/0.34.05/bin/dwarffortress dwarffortress | |
| ln -s ../../Cellar/dwarf-fortress/0.34.05 dwarf-fortress | |
| ==> Summary | |
| /usr/local/Cellar/dwarf-fortress/0.34.05: 346 files, 37M, built in 3 seconds |