-
Notifications
You must be signed in to change notification settings - Fork 2
/
devblog.html
86 lines (74 loc) · 3.57 KB
/
devblog.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dev Blog - Mini MCC/Byte Battles</title>
<link rel="icon" type="image/png" href="icon.png">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="background"></div>
<nav class="nav-bar">
<a href="home.html" class="nav-item">Home</a>
<a href="https://discord.gg/yj9PEsT8Fj" target="_blank" rel="noopener noreferrer" class="nav-item">Discord</a>
<a href="sneakpeeks.html" class="nav-item">Sneak Peeks</a>
<a href="devblog.html" class="nav-item">Dev Blog</a>
<a href="minimcc.html" class="nav-item">Mini MCC</a>
<a href="https://www.exphost.net/" target="_blank" rel="noopener noreferrer" class="nav-item">ExpHost</a>
<a href="applications.html" class="nav-item">Applications</a>
</nav>
<header class="header" id="header">
<h1>DEV BLOG</h1>
</header>
<main class="content">
<div class="devblog-box">
<h2>MiniMCC Devblog 2</h2>
<div class="devblog-meta">12/20/24 through 12/30/24</div>
<div class="devblog-content">
<p>We fixed more stuff and added stuff </p>
<h3>Fixes and Changes</h3>
<ul>
<li>fixed meltdown team kill not working</li>
<li>fixed railroad rush dynamite not exploding through blocks(aka it only exploded blocks on the surface of the rocks in gold rush)</li>
<li>fixed ace race barriers spawning wrong in new map (minor)</li>
<li>changed railroad rush dyamite to have a fixed radius of 5 blocks</li>
<li>you can now look around while frozen in meltdown</li>
<li>ice blocks when frozen in meltdown no longer have collision</li>
</ul>
<h3>The cool thing</h3>
<ul>
<li>squid cooked and made handheld maps for meltdown</li>
</ul>
<p>Thats everything (I think)</p>
</div>
</div>
<div class="devblog-box">
<h2>MiniMCC Devblog 1</h2>
<div class="devblog-meta">12/8/24 through 12/20/24</div>
<div class="devblog-content">
<p>We fixed stuff</p>
<h3>Railroad Rush</h3>
<ul>
<li>fixed Railroad Rush power bug</li>
<li>fixed Railroad Rush villager prices</li>
<li>fixed Railroad Rush lava bouncing players too high</li>
<li>added auto-pickup for manual mining to Railroad Rush</li>
<li>breaking raw gold blocks in Railroad Rush now gives 9 raw gold instead of 1 raw gold block</li>
<li>Railroad Rush explosions no longer break light gray conrete</li>
</ul>
<h3>Hunger Games</h3>
<ul>
<li>revamped loot pool (thanks Clara)</li>
</ul>
<p>Thats everything (I think)</p>
</div>
</div>
</main>
<div class="dev-credit">
Developed by echo
</div>
<script src="script.js"></script>
</body>
</html>