Skip to content

Commit 601e535

Browse files
Change XP scaling on bosses
1 parent 1ff6833 commit 601e535

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,12 +186,12 @@ class Mod : GenericMod {
186186

187187
if ((creature->entity_data.appearance.flags2 & (1 << (int)cube::Creature::AppearanceModifiers::IsNamedBoss)) != 0)
188188
{
189-
xp_gain *= 10;
189+
xp_gain *= 5;
190190
}
191191

192192
if ((creature->entity_data.appearance.flags2 & (1 << (int)cube::Creature::AppearanceModifiers::IsMiniBoss)) != 0)
193193
{
194-
xp_gain *= 10;
194+
xp_gain *= 2;
195195
}
196196

197197
wchar_t buffer[250];

0 commit comments

Comments
 (0)