diff --git a/doc/type/pack_item_reference.txt b/doc/type/pack_item_reference.txt
index 8164917e..95ea4acf 100644
--- a/doc/type/pack_item_reference.txt
+++ b/doc/type/pack_item_reference.txt
@@ -12,7 +12,7 @@ A reference to a [[type:pack item]].
! Property Type Default Description
| @name@ Name of a [[type:pack item]] ''required'' Name of the pack item to include in this pack.
| @amount@ [[type:scriptable]] [[type:double]] 1 How many of those cards are in the pack?
-| @type@ @"replace"@, @"no replace"@ or @"cyclic"@ @"replace"@ How should the cards be selected? The options are:
- Random with replacement
- Random without replacement
- Cyclic, selecting each card in turn
+| @type@ @"replace"@, @"no replace"@ or @"cyclic"@ @"no replace"@ How should the cards be selected? The options are: - Random with replacement
- Random without replacement
- Cyclic, selecting each card in turn
--Example--
>item:
diff --git a/src/data/pack.cpp b/src/data/pack.cpp
index 2fe0f8e1..7e8925c5 100644
--- a/src/data/pack.cpp
+++ b/src/data/pack.cpp
@@ -54,7 +54,7 @@ IMPLEMENT_REFLECTION_ENUM(PackRefType) {
PackItemRef::PackItemRef()
: amount(1)
- , type(PACK_REF_REPLACE)
+ , type(PACK_REF_NO_REPLACE)
{}
IMPLEMENT_REFLECTION(PackItemRef) {