mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 10:48:00 +00:00
- Sound System: Added the Enchantment sound, some style fixes.
This commit is contained in:
@@ -46,15 +46,14 @@ public class SoundUtils {
|
|||||||
if (sa.isSpell()) {
|
if (sa.isSpell()) {
|
||||||
if (source.isCreature() && source.isArtifact()) {
|
if (source.isCreature() && source.isArtifact()) {
|
||||||
Sounds.ArtifactCreature.play();
|
Sounds.ArtifactCreature.play();
|
||||||
}
|
} else if (source.isCreature()) {
|
||||||
else if (source.isCreature()) {
|
|
||||||
Sounds.Creature.play();
|
Sounds.Creature.play();
|
||||||
}
|
} else if (source.isArtifact()) {
|
||||||
else if (source.isArtifact()) {
|
|
||||||
Sounds.Artifact.play();
|
Sounds.Artifact.play();
|
||||||
}
|
} else if (source.isPlaneswalker()) {
|
||||||
else if (source.isPlaneswalker()) {
|
|
||||||
Sounds.Planeswalker.play();
|
Sounds.Planeswalker.play();
|
||||||
|
} else if (source.isEnchantment()) {
|
||||||
|
Sounds.Enchantment.play();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user