v0.2.2: tweaked confusion gas duration (notably less 'you feel dizzy' spam)

This commit is contained in:
Evan Debenham 2014-10-30 16:31:45 -04:00
parent 3df12ebf2d
commit c23191575e

View File

@ -33,7 +33,7 @@ public class ConfusionGas extends Blob {
Char ch;
for (int i=0; i < LENGTH; i++) {
if (cur[i] > 0 && (ch = Actor.findChar( i )) != null) {
Buff.prolong( ch, Vertigo.class, 1 );
Buff.prolong( ch, Vertigo.class, 2 );
}
}
}