Skip to content

Commit 0016ede

Browse files
committed
Fix two errors inside vanilla enums
1 parent 3edf72c commit 0016ede

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/docs/enums/vanilla.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1338,7 +1338,7 @@
13381338
},
13391339
"EntityFlag": {
13401340
"FLAG_NO_STATUS_EFFECTS": {
1341-
"value": "1 <<",
1341+
"value": "1 << 0",
13421342
"comment": "Prevents status effects from applying to the entity (e.g. freeze, poison, slow, charm, confusion, fear, burn, etc.)."
13431343
},
13441344
"FLAG_NO_INTERPOLATE": {
@@ -5452,7 +5452,7 @@
54525452
"comment": "can hit enemies "
54535453
},
54545454
"ACID_RED": {
5455-
"value": " << 81",
5455+
"value": "1 << 8",
54565456
"comment": "blood acid "
54575457
},
54585458
"GREED": {

0 commit comments

Comments
 (0)