Skip to content

Commit b866292

Browse files
committed
Minor fixes for BagOfHolding
1 parent 080d8c8 commit b866292

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

mods/bagofholding.disabled

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
classname=org.gotti.wurmunlimited.mods.bagofholding.BagOfHoldingMod
22
classpath=bagofholding.jar
3+
sharedClassLoader=true
34
spellCost=30
45
spellDifficulty=20
56
spellCooldown=300000

src/mods/bagofholding/com/wurmonline/server/spells/BagOfHolding.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ void doEffect(final Skill castSkill, final double power, final Creature performe
7575
performer.getCommunicator().sendNormalServerMessage("You frown as you fail to enlarge the " + target.getName() + ".");
7676
Server.getInstance().broadCastAction(String.valueOf(performer.getName()) + " frowns.", performer, 5);
7777
} else {
78-
performer.getCommunicator().sendNormalServerMessage("You succeed in enlarging the " + this.name + ".");
78+
performer.getCommunicator().sendNormalServerMessage("You succeed in enlarging the " + target.getName() + ".");
7979
eff.improvePower((float) power);
8080
if (!target.isEnchantedTurret()) {
8181
target.setHasCourier(true);

0 commit comments

Comments
 (0)