diff options
-rw-r--r-- | source/cChunk.cpp | 2 | ||||
-rw-r--r-- | webadmin/template.html | 7 |
2 files changed, 8 insertions, 1 deletions
diff --git a/source/cChunk.cpp b/source/cChunk.cpp index 89d03bfb5..1383a49d9 100644 --- a/source/cChunk.cpp +++ b/source/cChunk.cpp @@ -238,6 +238,8 @@ void cChunk::SetAllData(const char * a_BlockData, cEntityList & a_Entities, cBlo // Create block entities that the loader didn't load; fill them with defaults
CreateBlockEntities();
+
+ CalculateHeightmap();
}
diff --git a/webadmin/template.html b/webadmin/template.html index dbe408c9f..a607c3f53 100644 --- a/webadmin/template.html +++ b/webadmin/template.html @@ -269,8 +269,13 @@ width: 700px;
}
- #main table th {
+ #main table tr th {
text-align: left;
+ background: #f6f6f6;
+ padding: 0px 20px;
+ height: 20px;
+ line-height: 20px;
+ border-bottom: 1px solid #ddd;
}
#main table tr td {
|