diff --git a/L2J_DataPack_BETA/.gitignore b/L2J_DataPack_BETA/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..4a95481e611021403799e1b0a49ae9c4f18d2e2f --- /dev/null +++ b/L2J_DataPack_BETA/.gitignore @@ -0,0 +1,2 @@ +/bin/ +/build/ diff --git a/L2J_DataPack_BETA/build.xml b/L2J_DataPack_BETA/build.xml index 7b99424c735c1a5c6cf7ab7d5b892a8ece28a8a9..a6305503401c541fd1789796f15fbb9f1ef36944 100644 --- a/L2J_DataPack_BETA/build.xml +++ b/L2J_DataPack_BETA/build.xml @@ -25,7 +25,7 @@ <property name="build.dist.game" location="${build.dist}/game" /> <property name="build.dist.login" location="${build.dist}/login" /> - <target name="init" depends="checkRequirements,getDateAndVersion" description="Create the output directories."> + <target name="init" depends="checkRequirements" description="Create the output directories."> <mkdir dir="${build}" /> </target> @@ -33,7 +33,6 @@ <sync todir="${build.dist}" includeemptydirs="true"> <fileset dir="dist" /> </sync> - <concat destfile="${build.dist.game}/config/l2jdp-version.properties">version=${l2j.version}${line.separator}builddate=${build.tstamp}</concat> </target> <target name="build" depends="dist"> @@ -49,20 +48,4 @@ </condition> </fail> </target> - - <target name="getDateAndVersion" description="Get Date and Version."> - <tstamp> - <format property="build.tstamp" pattern="dd/MM/yyyy HH:mm" /> - </tstamp> - <exec dir="${basedir}" executable="svnversion" outputproperty="l2j.version"> - <arg value="-c" /> - <redirector> - <outputfilterchain> - <tokenfilter> - <replaceregex pattern="[0-9]+\:" replace="" /> - </tokenfilter> - </outputfilterchain> - </redirector> - </exec> - </target> </project> \ No newline at end of file diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/handlers/telnethandlers/DebugHandler.java b/L2J_DataPack_BETA/dist/game/data/scripts/handlers/telnethandlers/DebugHandler.java index 9dd03c5c70790c817df718099393f37a6584ba06..3a4d9ab1296793172cbac55877d7f612ffdcda58 100644 --- a/L2J_DataPack_BETA/dist/game/data/scripts/handlers/telnethandlers/DebugHandler.java +++ b/L2J_DataPack_BETA/dist/game/data/scripts/handlers/telnethandlers/DebugHandler.java @@ -35,7 +35,6 @@ import java.util.StringTokenizer; import javolution.util.FastComparator; import javolution.util.FastTable; -import com.l2jserver.Config; import com.l2jserver.gameserver.GameTimeController; import com.l2jserver.gameserver.LoginServerThread; import com.l2jserver.gameserver.ThreadPoolManager; @@ -167,8 +166,6 @@ public class DebugHandler implements ITelnetHandler StringBuilder sb = new StringBuilder(); sb.append(sdf.format(cal.getTime())); - sb.append("\n\nL2J Server Version: " + Config.SERVER_VERSION); - sb.append("\nDP Revision: " + Config.DATAPACK_VERSION); sb.append("\n\n"); uptime = _uptime; sb.append(getServerStatus());