diff --git a/doc/CHANGES.txt b/doc/CHANGES.txt index 90363e81539..e1292e34009 100644 --- a/doc/CHANGES.txt +++ b/doc/CHANGES.txt @@ -5,6 +5,9 @@ Changelog 1.42 +*bugfixes* +- copy "dest" attribute when splitting marked scroll stacks + *world* - added non-interactive tadpole to Ados Rock map diff --git a/src/games/stendhal/server/entity/item/StackableItem.java b/src/games/stendhal/server/entity/item/StackableItem.java index 13672a3425c..a7e38ea0a14 100644 --- a/src/games/stendhal/server/entity/item/StackableItem.java +++ b/src/games/stendhal/server/entity/item/StackableItem.java @@ -40,6 +40,7 @@ public class StackableItem extends Item implements Stackable { private static String[] initializeAttributeNamesToCopy() { Collection attsToCopy = new LinkedList(Arrays.asList(IMPORTANT_ATTRIBUTES)); attsToCopy.add("description"); + attsToCopy.add("dest"); return attsToCopy.toArray(new String[attsToCopy.size()]); }