Skip to content
This repository was archived by the owner on Jul 17, 2022. It is now read-only.

Commit 59366a1

Browse files
Attempted to make conditionals reliable
1 parent fa54af9 commit 59366a1

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Compiler.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -432,6 +432,7 @@ export function Compile(tree, config, source, path){
432432
tree[i] = deep
433433
}
434434

435+
//TODO: Make reliable
435436
for(let i = 0; i < flags.length; i++){
436437
let data = {
437438
default: 0,
@@ -470,6 +471,7 @@ export function Compile(tree, config, source, path){
470471

471472
const dynamicValueNames = Object.getOwnPropertyNames(dynamicValues)
472473

474+
//TODO: Make reliable
473475
for(let i = 0; i < dynamicValueNames.length; i++){
474476
let data = {
475477
default: 0,

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ func update => {
129129
- Molang In Expressions ✔️
130130
- Random Booleans ✔️
131131
- Reliable Update ✔️
132-
- Force Update Flags ⚠️
132+
- Force Update Flags 🛑
133133
- While Loops 💡
134134
- For Loops 💡
135135
- Integer Flag Support 💡

0 commit comments

Comments
 (0)