Add entity- and tileentity-sensitive versions of Spell#canBeCastByNPCs and Spell#canBeCastByDispensers
This commit is contained in:
@@ -190,7 +190,8 @@ public class CommandCastSpell extends CommandBase {
|
||||
}
|
||||
|
||||
if(spell.isContinuous){
|
||||
|
||||
// We need not query Spell#canBeCastByDispensers since with commands there's no difference between
|
||||
// a spell that can't be cast positionally and one that can be cast positionally but fails
|
||||
if(spell.cast(world, origin.x, origin.y, origin.z, direction, 0, duration, modifiers)){
|
||||
|
||||
MinecraftForge.EVENT_BUS.post(new SpellCastEvent.Post(Source.COMMAND, spell, world, origin.x, origin.y, origin.z, direction, modifiers));
|
||||
|
||||
@@ -113,7 +113,7 @@ public class CommandDiscoverSpell extends CommandBase {
|
||||
if(server.sendCommandFeedback()) sender.sendMessage(
|
||||
new TextComponentTranslation("commands." + Wizardry.MODID + ":discoverspell.clear", player.getName()));
|
||||
}else if(all){
|
||||
data.spellsDiscovered.addAll(Spell.getSpells(Spell.allSpells));
|
||||
data.spellsDiscovered.addAll(Spell.getAllSpells());
|
||||
if(server.sendCommandFeedback()) sender.sendMessage(
|
||||
new TextComponentTranslation("commands." + Wizardry.MODID + ":discoverspell.all", player.getName()));
|
||||
}else{
|
||||
|
||||
Reference in New Issue
Block a user