Skip to content

Commit

Permalink
修复:手办在放置时会错误地出现版本不对应提示
Browse files Browse the repository at this point in the history
  • Loading branch information
ENIACJushi committed Jul 7, 2024
1 parent 93ac26b commit 34cbb74
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions Docs/TODO.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@

## 更新日志

## 计划

- 若女仆有名字,则在收回时,照片、魂符和胶片也被命名为这个名字;
- 显示女仆名称的魂符在放置时,会被擦去显示的女仆名字,
- 若魂符本身已经在铁砧被命名,则原名称会保留;
NTR工具:开墓碑

隙间

- 物品隙间:可以放置6个方向的方块隙间
- 方块隙间:放置时原地生成一个实体隙间
- 实体隙间
- 实体隙间
- 记录了放置者的id/name、方块的位置和方向(为了避免意外位移)
- 每60秒,先检查原位置的方块隙间是否还在,然后检查自身是否还在原位置,接着以原位置为基点,将附近属于放置者的女仆的物品放入其对着的容器内
- 有九格容积,只能由放置者打开,在将女仆背包内的物品转移到箱子时,会按种类和数量保留这些物品
Expand Down
8 changes: 4 additions & 4 deletions TouHouLittleMaid_BP/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"header": {
"name": "TouHou Little Maid BE",
"uuid": "fed26523-2c16-4560-9076-aff6ad49a1e3",
"version": [ 1, 3, 0 ],
"description": "Version: 1.3.0 (For Minecraft 1.21.x) \nAuthor: ENIAC_Jushi",
"version": [ 1, 3, 1 ],
"description": "Version: 1.3.1 hotfix (For Minecraft 1.21.0x) \nAuthor: ENIAC_Jushi",
"min_engine_version": [ 1, 20, 30 ]
},
"modules": [
Expand All @@ -13,12 +13,12 @@
"language": "javascript",
"uuid": "9439f1f5-116d-4f4a-8e23-9adc2b9d4721",
"entry": "scripts/index.js",
"version": [ 1, 3, 0 ]
"version": [ 1, 3, 1 ]
},
{
"type": "data",
"uuid": "f3249f90-9682-4b1a-a084-e111881b678f",
"version": [ 1, 3, 0 ]
"version": [ 1, 3, 1 ]
}
],
"dependencies": [
Expand Down
1 change: 0 additions & 1 deletion TouHouLittleMaid_BP/scripts/src/maid/EntityMaid.js
Original file line number Diff line number Diff line change
Expand Up @@ -1170,7 +1170,6 @@ export class EntityMaid{
},1);
}
maid.setDynamicProperty("spawn_set", true);
maid.triggerEvent("api:init_success");
}
/// 字符化
/**
Expand Down
1 change: 1 addition & 0 deletions TouHouLittleMaid_BP/scripts/src/maid/MaidManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ export class MaidManager{
*/
static onSpawnEvent(event){
let maid = event.entity;
maid.triggerEvent("api:init_success");
EntityMaid.init_maid(maid);
}
/**
Expand Down
6 changes: 3 additions & 3 deletions TouHouLittleMaid_RP/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
"format_version": 2,
"header": {
"name": "TouHou Little Maid BE",
"description": "Version: 1.3.0 (For Minecraft 1.21.x) \nAuthor: ENIAC_Jushi",
"description": "Version: 1.3.1 (For Minecraft 1.21.0x) \nAuthor: ENIAC_Jushi",
"uuid": "919b50d9-d6ab-40bb-828d-9e2f40f664a5",
"version": [ 1, 3, 0 ],
"version": [ 1, 3, 1 ],
"min_engine_version": [ 1, 20, 30 ]
},
"modules": [
{
"type": "resources",
"uuid": "8edf11fe-0a52-4481-ae27-1cc206a01919",
"version": [ 1, 3, 0 ]
"version": [ 1, 3, 1 ]
}
],
"dependencies": [
Expand Down
2 changes: 1 addition & 1 deletion TouHouLittleMaid_RP/texts/en_us.lang
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
message.tlm.player_join1=§e[TLM] Touhou Little Maid 1.3.0
message.tlm.player_join1=§e[TLM] Touhou Little Maid 1.3.1 hotfix
message.tlm.player_join2=§e Visit mcmod.cn for complete tutorial.

##### UI #####
Expand Down
2 changes: 1 addition & 1 deletion TouHouLittleMaid_RP/texts/zh_CN.lang
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
message.tlm.player_join1=§e[TLM] 车万女仆 1.3.0
message.tlm.player_join1=§e[TLM] 车万女仆 1.3.1 hotfix
message.tlm.mc_version=1.21.0x
message.tlm.player_join2=§e 访问 mcmod.cn 获取全部教程。

Expand Down

0 comments on commit 34cbb74

Please sign in to comment.