MCFPP icon indicating copy to clipboard operation
MCFPP copied to clipboard

MCFPP is a brand new objected-oriented language that can be compiled into Minecraft Datapack.

Results 12 MCFPP issues
Sort by recently updated
recently updated
newest added

### 描述 在使用字符串变量进嵌入原生命令输出时,编译器生成的命令包含了多余的引号。 ### 复现步骤 1. 创建以下 MCFPP 代码: ```mcfpp func hello { var i = "hello world"; /say ${i} } ``` 2. 编译生成对应的函数文件 ### 期望行为 生成 ```mcfunction #datapacks\example\data\mcfpp\function\hello.mcfunction data...

### 描述: 在使用变量进行乘法操作时,编译器抛出空指针异常,无法正确生成数据包。 ### 复现步骤: 1. 创建如下内容的 mcfpp 文件: ```mcfpp # example.mcfpp func hello { var i = 5; var b = 10 * i; } ``` ```json5 # example.json...