-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
7 changed files
with
57 additions
and
223 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,23 @@ | ||
name: VillagerSaver | ||
<<<<<<< HEAD | ||
<<<<<<< HEAD | ||
<<<<<<< HEAD | ||
version: 1.1.6 | ||
======= | ||
version: 1.1.5 | ||
>>>>>>> parent of 688c16c (Minor changes) | ||
======= | ||
version: 1.1.5 | ||
>>>>>>> parent of 688c16c (Minor changes) | ||
======= | ||
version: 1.2.0 | ||
>>>>>>> parent of cb5e316 (Revert "Merge branch 'pr/14'") | ||
author: MarioFinale | ||
main: cl.mariofinale.villagerSaver | ||
api-version: 1.13 | ||
website: mariofinale.cl | ||
commands: | ||
villagersaver: | ||
description: VillagerSaver commands. | ||
usage: /villagersaver <blacklistworld - unblacklistworld> | ||
usage: /villagersaver <blacklistworld - unblacklistworld> | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,18 @@ | ||
package cl.mariofinale; | ||
import org.bukkit.ChatColor; | ||
import org.bukkit.entity.EntityType; | ||
|
||
import java.util.ArrayList; | ||
|
||
public class VillagerSaver_PluginVars { | ||
public static String PluginPrefix = ChatColor.BOLD + "" + ChatColor.GREEN + "[Villager Saver]:" + ChatColor.RESET; | ||
public static ArrayList ZombieTypes = new ArrayList<EntityType>(){ | ||
{ | ||
add(EntityType.ZOMBIE); | ||
add(EntityType.ZOMBIE_VILLAGER); | ||
add(EntityType.DROWNED); | ||
add(EntityType.HUSK); | ||
add(EntityType.ZOMBIFIED_PIGLIN); | ||
} | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
name: VillagerSaver | ||
version: 1.1.6 | ||
version: 1.2.0 | ||
author: MarioFinale | ||
main: cl.mariofinale.villagerSaver | ||
api-version: 1.13 | ||
website: mariofinale.cl | ||
commands: | ||
villagersaver: | ||
description: VillagerSaver commands. | ||
usage: /villagersaver <blacklistworld - unblacklistworld> | ||
usage: /villagersaver <blacklistworld - unblacklistworld> | ||
|