maraiah: fix projectile flags

master
an 2019-07-01 01:22:59 -04:00
parent 628494e8a4
commit 19cf86b8bc
2 changed files with 6 additions and 4 deletions

View File

@ -2414,8 +2414,9 @@ this actually hurts my head.
| `BecomeItem` | `16` |
| `Bloody` | `17` |
| `WanderHorz` | `18` |
| `UseLowGrav` | `19` |
| `PassMedia` | `20` |
| `WanderVert` | `19` |
| `UseLowGrav` | `20` |
| `PassMedia` | `21` |
### Monster Flags ###

View File

@ -81,8 +81,9 @@ bitflags! {
const BECOME_ITEM = 1 << 16;
const BLOODY = 1 << 17;
const WANDER_HORZ = 1 << 18;
const USE_LOW_GRAV = 1 << 19;
const PASS_MEDIA = 1 << 20;
const WANDER_VERT = 1 << 19;
const USE_LOW_GRAV = 1 << 20;
const PASS_MEDIA = 1 << 21;
}
}