mushrooms don't glow!!
This commit is contained in:
@@ -16,7 +16,19 @@ function registerAdAstraBlockModifications(event) {
|
||||
event.modify('ad_astra:strophar_mushroom', block => {
|
||||
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 => {
|
||||
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 => {
|
||||
registerAdAstraBlockModifications(event)
|
||||
registerSpeciesBlockModifications(event)
|
||||
})
|
||||
|
||||
ItemEvents.modification(event => {
|
||||
registerBeneathItemModifications(event)
|
||||
registerConstructionWandsItemModifications(event)
|
||||
registerCreateItemModifications(event)
|
||||
registerFirmalifeItemModifications(event)
|
||||
registerGTCEuItemModifications(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
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user