2014-06-26 22:07:23 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2014-07-22 02:28:52 +02:00
|
|
|
find ../PaperSpigot-Server/src/ -type f -exec sed -i 's/net.minecraft.util.//g' {} \;
|
2014-06-26 22:07:23 +02:00
|
|
|
find ../Spigot-Server/src/ -type f -exec sed -i 's/net.minecraft.util.//g' {} \;
|
2014-07-22 02:28:52 +02:00
|
|
|
find ../Spigot-Server-Patches/ -type f -exec sed -i 's/net.minecraft.util.//g' {} \;
|
2014-06-26 22:07:23 +02:00
|
|
|
find ../CraftBukkit-Patches/ -type f -exec sed -i 's/net.minecraft.util.//g' {} \;
|
|
|
|
|
2014-07-22 02:28:52 +02:00
|
|
|
find ../PaperSpigot-Server/src/ -type f -exec sed -i 's/com.mojang.authlib./net.minecraft.util.com.mojang.authlib./g' {} \;
|
2014-06-26 22:07:23 +02:00
|
|
|
find ../Spigot-Server/src/ -type f -exec sed -i 's/com.mojang.authlib./net.minecraft.util.com.mojang.authlib./g' {} \;
|
|
|
|
find ../CraftBukkit-Patches/ -type f -exec sed -i 's/com.mojang.authlib./net.minecraft.util.com.mojang.authlib./g' {} \;
|
2014-07-22 02:28:52 +02:00
|
|
|
find ../Spigot-Server-Patches/ -type f -exec sed -i 's/com.mojang.authlib./net.minecraft.util.com.mojang.authlib./g' {} \;
|