Skip to content

Commit

Permalink
1.1.1
Browse files Browse the repository at this point in the history
Minor fixes
  • Loading branch information
ljm12914 committed Aug 17, 2024
1 parent 4147a92 commit eed1fa1
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion abs_vertical_slabs_BP/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"description": "基岩之上服务器模组。提供生存友好的竖向半砖和混合半砖。",
"min_engine_version": [ 1, 21, 20 ],
"uuid": "3ad6fb9e-6aba-4508-b8af-1f6185767adf",
"version": [ 1, 1, 0 ]
"version": [ 1, 1, 1 ]
},
"modules": [
{
Expand Down
2 changes: 1 addition & 1 deletion abs_vertical_slabs_BP/scripts/blockChange/collectWater.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { isModItem } from "../utils/namespace";

/**@param {ItemUseOnBeforeEvent} data*/
export default function collectWater(data){
world.sendMessage(meetConversionConditions(data.block)?"true":"false");
world.sendMessage(`${meetConversionConditions(data.block)}`);
if( //为非冒险模式玩家
data.source.typeId === "minecraft:player" && data.source.getGameMode() != GameMode.adventure
//为空桶和模组方块
Expand Down
4 changes: 0 additions & 4 deletions abs_vertical_slabs_BP/scripts/copper/lightningDeoxidize.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,6 @@ function deoxidationInfo(entity){
case 5:
blockAttached = block.west(1);
break;
default:
console.error(`Direction for lightning rod get other cases: ${direction}`);
world.sendMessage("§e您有一条新的 bug 消息,请及时查收!");
break;
}
if(blockAttached && hasOxidation(blockAttached.typeId)) result = {
meetsCondition: true,
Expand Down

0 comments on commit eed1fa1

Please sign in to comment.