3 Commit-ok b3bf36816a ... f86b328227

Szerző SHA1 Üzenet Dátum
  Reddo f86b328227 Spacing 5 éve
  Reddo 86666800af Organization 5 éve
  Reddo eaddca1e26 Don't try to fit if full 5 éve

+ 0 - 0
app/World/Classes/ContentPicker/ContentAtom/ContentAtomCombat.ts → app/World/Classes/ContentPicker/Combat/ContentAtomCombat.ts


+ 1 - 0
app/World/Classes/ContentPicker/ContentMolecule/ContentMoleculeCombat.ts → app/World/Classes/ContentPicker/Combat/ContentMoleculeCombat.ts

@@ -59,6 +59,7 @@ class ContentMoleculeCombat extends ContentMolecule {
             let finalSay = new Say();
             matches.forEach((value : ContentMoleculeCombat) => {
                 finalSay.add(value.getSay(specificMolecule));
+                finalSay.add(" ");
             });
             return finalSay;
         }

+ 4 - 0
app/World/Classes/ContentPicker/ContentMolecule.ts

@@ -43,6 +43,10 @@ class ContentMolecule {
                 missingAtoms = cachedAtoms;
                 chosenOnes.push(k);
             }
+
+            if (missingAtoms.length == 0) {
+                break;
+            }
         }
 
         if (missingAtoms.length == 0) {