Skip to content

Commit a4cb4ff

Browse files
0.5.4.4
1 parent b3c4d7d commit a4cb4ff

File tree

5 files changed

+34
-17
lines changed

5 files changed

+34
-17
lines changed

changelog.md

Lines changed: 21 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,25 @@
1-
## 0.5.4.3
2-
Final patch for 0.5.4
1+
## 0.5.4.4
2+
ACTUALLY final patch for 0.5.4
33

44
#### Changes:
5-
- Rebalanced Balloons (again)
6-
- Rebalanced Gas Thrusters (again)
7-
- Rebalanced Gas Engines (again :wilted_rose:)
8-
- New tooltip info
9-
- Bearing should work now on Krunch backend maybe
10-
- New physics ponder stuff
11-
- Gas Nozzle ACTUALLY IN CREATIVE MENU I SWEAR
5+
- Rebalanced Balloons (YET again)
6+
- Adjusted Wanderlite forces
7+
- Wanderlite crystal items now float
8+
- Removed Create weights from Clockwork (They're in VS now)
9+
- Added the SOLVER (WIP, not in creative menu for now)
10+
- Added new lightning and beam renderer (For next update)
11+
- Altimeter reworked
12+
- Phys Bearings can be wrenched again
13+
- A bunch of other Phys Bearing tweaks
14+
- CC Tweaked Compat/integration is back
1215

1316
#### Bugfixes:
14-
- Fix blade cutting recipe
15-
- Fixed invalid gas thruster and exhaust node size
16-
- Fixed phys bearings... mostly...
17-
- Fixed coal burner crashing on schem place
18-
- Fixed invalid gas flow for balloons causing them to reach -100 degrees celsius (wtf)
17+
- Fix sawblade mixin
18+
- Fix blade shapeless crafting
19+
- Ponder fixes
20+
- Copter Bearing fixes
21+
- Balloon leaking fixed
22+
- Balloon forces fixed
23+
- Balloons fixed (in general)
24+
- Gas Nozzle no longer manages to somehow lower balloon temperature (what)
25+
- Copter accepts redstone input of 0 again

common/src/main/kotlin/org/valkyrienskies/clockwork/ClockworkBlocks.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1071,7 +1071,7 @@ object ClockworkBlocks {
10711071
.addLayer { Supplier { RenderType.cutout() } }
10721072
.tag(AllTags.AllBlockTags.SAFE_NBT.tag)
10731073
.item()
1074-
.tab(ClockworkMod.BASE_CREATIVE_TABINFO)
1074+
//.tab(ClockworkMod.BASE_CREATIVE_TABINFO)
10751075
.build()
10761076
.register()
10771077

@@ -1086,7 +1086,7 @@ object ClockworkBlocks {
10861086
.addLayer { Supplier { RenderType.cutout() } }
10871087
.tag(AllTags.AllBlockTags.SAFE_NBT.tag)
10881088
.item()
1089-
.tab(ClockworkMod.BASE_CREATIVE_TABINFO)
1089+
//.tab(ClockworkMod.BASE_CREATIVE_TABINFO)
10901090
.build()
10911091
.register()
10921092

common/src/main/kotlin/org/valkyrienskies/clockwork/ClockworkItems.kt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -238,12 +238,21 @@ object ClockworkItems {
238238
@JvmField
239239
val INCOMPLETE_HOSE_SPOOL: ItemEntry<SequencedAssemblyItem> = sequencedIngredient("incomplete_hose_spool")
240240

241+
@JvmField
242+
val TRIODE : ItemEntry<Item> = ingredient("triode")
243+
241244
@JvmStatic
242245
private fun sequencedIngredient(name: String): ItemEntry<SequencedAssemblyItem> {
243246
return REGISTRATE.item(name, ::SequencedAssemblyItem)
244247
.register();
245248
}
246249

250+
@JvmStatic
251+
private fun ingredient(name: String): ItemEntry<Item> {
252+
return REGISTRATE.item(name, ::Item)
253+
.register();
254+
}
255+
247256
@JvmStatic
248257
fun register() {
249258
GogglesItem.addIsWearingPredicate { player -> AERONAUT_GOGGLES.isIn(player.getItemBySlot(EquipmentSlot.HEAD)) }

common/src/main/resources/assets/vs_clockwork/lang/en_us.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@
5757
"item.vs_clockwork.goo_block": "Block of Goo",
5858
"block.vs_clockwork.slicker": "Slicker",
5959
"item.vs_clockwork.slicker": "Slicker",
60+
"item.vs_clockwork.triode": "Triode",
6061

6162
"block.vs_clockwork.asteroid_block": "Debug Meteor Spawner",
6263
"item.vs_clockwork.asteroid_block": "Debug Meteor Spawner",

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ org.gradle.daemon=false
55
# Identity
66
mod_name=clockwork
77
mod_id=vs_clockwork
8-
mod_version=0.5.4.3
8+
mod_version=0.5.4.4
99
archives_base_name=clockwork
1010
maven_group=org.valkyrienskies
1111

0 commit comments

Comments
 (0)