mushrooms don't glow!!
This commit is contained in:
parent
8892faef5d
commit
d1c375c1ee
3 changed files with 29 additions and 0 deletions
|
|
@ -16,7 +16,19 @@ function registerAdAstraBlockModifications(event) {
|
||||||
event.modify('ad_astra:strophar_mushroom', block => {
|
event.modify('ad_astra:strophar_mushroom', block => {
|
||||||
block.lightEmission = 0
|
block.lightEmission = 0
|
||||||
})
|
})
|
||||||
|
event.modify('ad_astra:strophar_stem', block => {
|
||||||
|
block.lightEmission = 0
|
||||||
|
})
|
||||||
|
event.modify('ad_astra:strophar_cap', block => {
|
||||||
|
block.lightEmission = 0
|
||||||
|
})
|
||||||
event.modify('ad_astra:aeronos_mushroom', block => {
|
event.modify('ad_astra:aeronos_mushroom', block => {
|
||||||
block.lightEmission = 0
|
block.lightEmission = 0
|
||||||
})
|
})
|
||||||
|
event.modify('ad_astra:aeronos_stem', block => {
|
||||||
|
block.lightEmission = 0
|
||||||
|
})
|
||||||
|
event.modify('ad_astra:aeronos_cap', block => {
|
||||||
|
block.lightEmission = 0
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
@ -17,12 +17,14 @@ StartupEvents.registry('entity_type', event => {
|
||||||
|
|
||||||
BlockEvents.modification(event => {
|
BlockEvents.modification(event => {
|
||||||
registerAdAstraBlockModifications(event)
|
registerAdAstraBlockModifications(event)
|
||||||
|
registerSpeciesBlockModifications(event)
|
||||||
})
|
})
|
||||||
|
|
||||||
ItemEvents.modification(event => {
|
ItemEvents.modification(event => {
|
||||||
registerBeneathItemModifications(event)
|
registerBeneathItemModifications(event)
|
||||||
registerConstructionWandsItemModifications(event)
|
registerConstructionWandsItemModifications(event)
|
||||||
registerCreateItemModifications(event)
|
registerCreateItemModifications(event)
|
||||||
|
registerFirmalifeItemModifications(event)
|
||||||
registerGTCEuItemModifications(event)
|
registerGTCEuItemModifications(event)
|
||||||
registerMinecraftItemModifications(event)
|
registerMinecraftItemModifications(event)
|
||||||
})
|
})
|
||||||
|
|
|
||||||
15
kubejs/startup_scripts/species/modifications.js
Normal file
15
kubejs/startup_scripts/species/modifications.js
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
// priority: 0
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function registerSpeciesBlockModifications(event) {
|
||||||
|
|
||||||
|
event.modify('species:alphacene_mushroom', block => {
|
||||||
|
block.lightEmission = 0
|
||||||
|
})
|
||||||
|
event.modify('species:alphacene_mushroom_block', block => {
|
||||||
|
block.lightEmission = 0
|
||||||
|
})
|
||||||
|
event.modify('species:alphacene_mushroom_growth', block => {
|
||||||
|
block.lightEmission = 0
|
||||||
|
})
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue