From 0a9aedaab2816113cae7825eabfc2cf64d807cab Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Tue, 7 Oct 2025 15:24:55 -0400 Subject: [PATCH] v3.3.0: fixed a typo in actor comments --- .../com/shatteredpixel/shatteredpixeldungeon/actors/Actor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/Actor.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/Actor.java index ef7143e6b..f311d46cd 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/Actor.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/Actor.java @@ -43,7 +43,7 @@ public abstract class Actor implements Bundlable { //default priority values for general actor categories //note that some specific actors pick more specific values - //e.g. a buff acting after all normal buffs might have priority BUFF_PRIO + 1 + //e.g. a buff acting before all normal buffs might have priority BUFF_PRIO + 1 protected static final int VFX_PRIO = 100; //visual effects take priority protected static final int HERO_PRIO = 0; //positive is before hero, negative after protected static final int BLOB_PRIO = -10; //blobs act after hero, before mobs