Compare commits
5 Commits
b8475b34ba
...
a9c958570f
Author | SHA1 | Date | |
---|---|---|---|
a9c958570f | |||
114c3a03d2 | |||
6b3445e1f6 | |||
14f254af3d | |||
8a23afeed0 |
@ -3,6 +3,9 @@
|
||||
**1.15.2 Port**
|
||||
* Tweak Steadfast Spell
|
||||
|
||||
**1.2.7**
|
||||
* Fix Cooling Spell Bug
|
||||
|
||||
**1.2.6**
|
||||
* Fix Potential Client-Server De-sync Bug
|
||||
|
||||
|
@ -10,7 +10,7 @@ org.gradle.jvmargs = -Xmx1G
|
||||
fabric_loader_version = 0.7.8+build.189
|
||||
|
||||
# Mod Properties
|
||||
mod_version = 1.2.6
|
||||
mod_version = 1.2.7
|
||||
maven_group = com.thebrokenrail
|
||||
archives_base_name = sorcerycraft
|
||||
|
||||
|
@ -28,7 +28,7 @@ public class CoolingSpell extends Spell {
|
||||
if (world.getBlockState(blockPos).getBlock() == Blocks.FIRE) {
|
||||
world.removeBlock(blockPos, false);
|
||||
}
|
||||
if (world.getBlockState(blockPos).get(Properties.LIT)) {
|
||||
if (world.getBlockState(blockPos).contains(Properties.LIT) && world.getBlockState(blockPos).get(Properties.LIT)) {
|
||||
world.setBlockState(blockPos, world.getBlockState(blockPos).with(Properties.LIT, false));
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user