diff --git a/CHANGELOG b/CHANGELOG index f8363d3ee..338d0d447 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -92,3 +92,8 @@ - Corrected special attack for the enhanced excalibur - Corrected damage calculations for Ruby Bolts (e) special effect < --- ABOVE Released January 1st, 2022 https://gitlab.com/2009scape/2009scape/-/tags/Jan-1-2022 ---- > +- Set magic dart base xp to 30 (authenticity fix) +- Removed range strength and prayer bonus from god armour (authenticity fix) +- Can now pickpocket women in ardy (npc ID 25) +- Can now travel on free charter boats without having money in inventory +- Emerald and diamond bracelet enchants no longer produce noted items diff --git a/Server/src/main/java/core/game/node/entity/combat/spell/MagicDart.java b/Server/src/main/java/core/game/node/entity/combat/spell/MagicDart.java index ea6a75aa8..a766fb7b9 100644 --- a/Server/src/main/java/core/game/node/entity/combat/spell/MagicDart.java +++ b/Server/src/main/java/core/game/node/entity/combat/spell/MagicDart.java @@ -28,7 +28,7 @@ public class MagicDart extends CombatSpell { * Constructs a new {@code MagicDart} {@code Object}. */ public MagicDart() { - super(SpellType.MAGIC_DART, SpellBook.MODERN, 50, 61.0, 218, 219, new Animation(1576, Priority.HIGH), null, Projectile.create((Entity) null, null, 330, 40, 36, 52, 75, 15, 11), new Graphics(331, 96), Runes.DEATH_RUNE.getItem(1), Runes.MIND_RUNE.getItem(4)); + super(SpellType.MAGIC_DART, SpellBook.MODERN, 50, 30.0, 218, 219, new Animation(1576, Priority.HIGH), null, Projectile.create((Entity) null, null, 330, 40, 36, 52, 75, 15, 11), new Graphics(331, 96), Runes.DEATH_RUNE.getItem(1), Runes.MIND_RUNE.getItem(4)); } @Override