From ba2a9b6b2c1519563662a6a1147a82f96afb36dc Mon Sep 17 00:00:00 2001 From: faketruth Date: Sun, 30 Sep 2012 16:37:44 +0000 Subject: Added falling block entities. Sand and gravel now properly fall down Implemented the PACKET_SPAWN_OBJECT packet Made some things use BLOCKTYPE instead of char Android: Requests WebAdmin port when pressing the configure button git-svn-id: http://mc-server.googlecode.com/svn/trunk@915 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- Android/src/com/mcserver/MCServerActivity.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Android/src/com/mcserver/MCServerActivity.java') diff --git a/Android/src/com/mcserver/MCServerActivity.java b/Android/src/com/mcserver/MCServerActivity.java index 8d3507ca3..38b566250 100644 --- a/Android/src/com/mcserver/MCServerActivity.java +++ b/Android/src/com/mcserver/MCServerActivity.java @@ -59,7 +59,7 @@ public class MCServerActivity extends Activity { ((Button)findViewById(R.id.configure_server)).setOnClickListener( new View.OnClickListener() { public void onClick(View v) { - Intent myIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://localhost:8081/webadmin/")); + Intent myIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://localhost:" + NativeGetWebAdminPort() + "/webadmin/")); startActivity( myIntent ); } }); @@ -251,6 +251,7 @@ public class MCServerActivity extends Activity { public native void NativeOnCreate(); public native void NativeCleanUp(); public native boolean NativeIsServerRunning(); + public native int NativeGetWebAdminPort(); } -- cgit v1.2.3