mirror of
https://github.com/Creators-of-Create/Create.git
synced 2025-03-03 22:34:42 +01:00
Merge remote-tracking branch 'origin/mc1.20.1/dev' into mc1.21.1/dev
# Conflicts: # src/main/java/com/simibubi/create/AllDisplaySources.java
This commit is contained in:
commit
1f306c3dc9
2 changed files with 11 additions and 0 deletions
|
@ -1,3 +1,11 @@
|
|||
------------------------------------------------------
|
||||
Create 6.0.2
|
||||
------------------------------------------------------
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- Fix warning getting logged when cc: tweaked isn't installed
|
||||
|
||||
------------------------------------------------------
|
||||
Create 6.0.1
|
||||
------------------------------------------------------
|
||||
|
|
|
@ -88,6 +88,9 @@ public class AllDisplaySources {
|
|||
|
||||
public static final RegistryEntry<DisplaySource, ComputerDisplaySource> COMPUTER = REGISTRATE.displaySource("computer", ComputerDisplaySource::new)
|
||||
.onRegisterAfter(Registries.BLOCK_ENTITY_TYPE, source -> {
|
||||
if (!Mods.COMPUTERCRAFT.isLoaded())
|
||||
return;
|
||||
|
||||
List<String> types = List.of("wired_modem_full", "computer_normal", "computer_advanced", "computer_command");
|
||||
for (String name : types) {
|
||||
ResourceLocation id = Mods.COMPUTERCRAFT.rl(name);
|
||||
|
|
Loading…
Add table
Reference in a new issue