Index: /binary-improvements/AllocsCommands/AllocsCommands.csproj
===================================================================
--- /binary-improvements/AllocsCommands/AllocsCommands.csproj	(revision 269)
+++ /binary-improvements/AllocsCommands/AllocsCommands.csproj	(revision 270)
@@ -56,4 +56,5 @@
     <Compile Include="Commands\BuffPlayer.cs" />
     <Compile Include="Commands\DebuffPlayer.cs" />
+    <Compile Include="Commands\RepairChunkDensity.cs" />
   </ItemGroup>
   <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
Index: /binary-improvements/MapRendering/Web/LogBuffer.cs
===================================================================
--- /binary-improvements/MapRendering/Web/LogBuffer.cs	(revision 269)
+++ /binary-improvements/MapRendering/Web/LogBuffer.cs	(revision 270)
@@ -8,5 +8,5 @@
 {
 	public class LogBuffer {
-		private const int MAX_ENTRIES = 30;
+		private const int MAX_ENTRIES = 3000;
 		private static LogBuffer instance;
 
@@ -108,6 +108,13 @@
 				}
 
+				int index = _start - listOffset;
+
+				if (index + _count > logEntries.Count) {
+					_count = logEntries.Count - index;
+				}
+
 				_end = _start + _count;
-				return logEntries.GetRange (_start - listOffset, _count);
+
+				return logEntries.GetRange (index, _count);
 			}
 		}
Index: /binary-improvements/server-fixes.userprefs
===================================================================
--- /binary-improvements/server-fixes.userprefs	(revision 269)
+++ /binary-improvements/server-fixes.userprefs	(revision 270)
@@ -1,10 +1,10 @@
 ﻿<Properties>
   <MonoDevelop.Ide.Workspace ActiveConfiguration="Release_Version" />
-  <MonoDevelop.Ide.Workbench ActiveDocument="MapRendering/API.cs">
+  <MonoDevelop.Ide.Workbench ActiveDocument="MapRendering/Web/Handlers/ItemIconHandler.cs">
     <Files>
       <File FileName="7dtd-server-fixes/ModInfo.xml" Line="1" Column="1" />
       <File FileName="AllocsCommands/ModInfo.xml" Line="1" Column="1" />
-      <File FileName="MapRendering/ModInfo.xml" Line="1" Column="1" />
-      <File FileName="MapRendering/Web/Web.cs" Line="10" Column="10" />
+      <File FileName="MapRendering/ModInfo.xml" Line="7" Column="7" />
+      <File FileName="MapRendering/Web/Web.cs" Line="1" Column="1" />
       <File FileName="MapRendering/Web/API/ExecuteConsoleCommand.cs" Line="1" Column="1" />
       <File FileName="MapRendering/Web/LogBuffer.cs" Line="1" Column="1" />
@@ -14,6 +14,7 @@
       <File FileName="MapRendering/Commands/WebTokens.cs" Line="1" Column="1" />
       <File FileName="AllocsCommands/Commands/TeleportPlayer.cs" Line="1" Column="1" />
-      <File FileName="MapRendering/Web/Handlers/ItemIconHandler.cs" Line="20" Column="20" />
-      <File FileName="MapRendering/API.cs" Line="1" Column="1" />
+      <File FileName="MapRendering/Web/Handlers/ItemIconHandler.cs" Line="1" Column="1" />
+      <File FileName="AllocsCommands/Commands/ListLandProtection.cs" Line="5" Column="5" />
+      <File FileName="AllocsCommands/Commands/RemoveLandProtection.cs" Line="1" Column="1" />
     </Files>
   </MonoDevelop.Ide.Workbench>
Index: /binary-improvements/webserver/css/style.css
===================================================================
--- /binary-improvements/webserver/css/style.css	(revision 269)
+++ /binary-improvements/webserver/css/style.css	(revision 270)
@@ -339,4 +339,5 @@
 .adminlog .logcol_type {
 	white-space: nowrap;
+	text-align: center;
 }
 .adminlog .logcol_msg {
