Version bump to 0.6.14

KubeJS scripts modified:
- server_scripts/cardboard_box_blacklist
  - Removed minecraft:stone
  - Added create:large_water_wheel
  - Added #waystones:waystones (tag)
  - Added #waystones:sharestones (tag)
  - Added waystones:portstone
  - Added waystones:warp_plate
  - Added ae2:mysterious_cube
    - The AE2 Meteorite Compass finds meteors using the Mysterious Cube, not the structure itself
  - Added cataclysm:altar of fire
  - Added cataclysm:altar_of_void
  - Added cataclysm:altar_of_abyss
  - Added cataclysm:altar_of_amethyst
  - Added rats:air_raid_siren
  - Added rats:dutchrat_bell
This commit is contained in:
SeaswimmerTheFsh 2023-11-28 00:57:08 -05:00
parent 9c0e16843f
commit 74414668a0
Signed by: cswimr
GPG key ID: 1EBC234EEDA901AE
3 changed files with 24 additions and 6 deletions

View file

@ -157,7 +157,7 @@ hash = "84f6d2ec82b50341634868cb6c1abec87d01a637ef9e35df4ad2e5ece7dce442"
[[files]]
file = "kubejs/server_scripts/cardboard_box_blacklist.js"
hash = "fc4faf74ae1bad06020a187ba3c699b259eab7da780bff3c48916c520aef910f"
hash = "866593986891ce56b4b2053cc4e5b41fbe06641da297e43162bcb82db20303bc"
[[files]]
file = "kubejs/server_scripts/clearlag.js.disabled"

View file

@ -1,5 +1,23 @@
// priority: 0
ServerEvents.tags('block', event => {
event.add('forge:relocation_not_supported','minecraft:stone')
// The Create Large Water Wheel breaks when boxed
event.add('forge:relocation_not_supported', 'create:large_water_wheel')
// Blacklist waystones
event.add('forge:relocation_not_supported','#waystones:waystones')
event.add('forge:relocation_not_supported','#waystones:sharestones')
event.add('forge:relocation_not_supported','waystones:portstone')
event.add('forge:relocation_not_supported','waystones:warp_plate')
// The AE2 Meteorite Compass finds meteors using the mysterious cube, meaning it should not be player movable
event.add('forge:relocation_not_supported', "ae2:mysterious_cube")
// Blacklist Cataclysm boss spawning altars
event.add('forge:relocation_not_supported', 'cataclysm:altar_of_fire')
event.add('forge:relocation_not_supported', 'cataclysm:altar_of_void')
event.add('forge:relocation_not_supported', 'cataclysm:altar_of_abyss')
event.add('forge:relocation_not_supported', 'cataclysm:altar_of_amethyst')
// Blacklist boss spawners from Ratlantis
event.add('forge:relocation_not_supported', 'rats:air_raid_siren')
event.add('forge:relocation_not_supported', 'rats:dutchrat_bell')
})

View file

@ -1,12 +1,12 @@
name = "GalacticFactory"
author = "GalacticFactory"
version = "0.6.13"
version = "0.6.14"
pack-format = "packwiz:1.1.0"
[index]
file = "index.toml"
hash-format = "sha256"
hash = "189f1278ae12658c539714b2246c33c0f62c55a2faa6439c931bdd8b7ead56b3"
hash = "e27ed2442222263bb5a5ceda2cb44099625a560b75ec76f231ef0dea089796d7"
[versions]
forge = "47.2.0"