Skip to content

Commit

Permalink
Hmm
Browse files Browse the repository at this point in the history
  • Loading branch information
iPocket committed Feb 19, 2016
1 parent e96f7a9 commit fa65a8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pocketmine/command/defaults/FillCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function execute(CommandSender $sender, $label, array $args){

for($a = 0; $a < 6; $a++){
if(isset($args[$a])){
if(is_integer($args[$a]) && !(stripos($args[$a], '~'))){
if(is_integer($args[$a])){
if(Item::fromString($args[6]) instanceof ItemBlock){
for($x = $args[0]; $x <= $args[3]; $x++){
for($y = $args[1]; $y <= $args[4]; $y++){
Expand Down

0 comments on commit fa65a8e

Please sign in to comment.