Skip to content
This repository has been archived by the owner on Feb 9, 2021. It is now read-only.

Commit

Permalink
Possible fix for #2297
Browse files Browse the repository at this point in the history
  • Loading branch information
shoghicp committed Nov 18, 2014
1 parent 19c0302 commit c7f578f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/pocketmine/tile/Sign.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@ public function getText(){

public function getSpawnCompound(){
return new Compound("", [
new String("Text1", $this->namedtag["Text1"]),
new String("Text2", $this->namedtag["Text2"]),
new String("Text3", $this->namedtag["Text3"]),
new String("Text4", $this->namedtag["Text4"]),
new String("id", Tile::SIGN),
$this->namedtag->Text1,
$this->namedtag->Text2,
$this->namedtag->Text3,
$this->namedtag->Text4,
new Int("x", (int) $this->x),
new Int("y", (int) $this->y),
new Int("z", (int) $this->z)
Expand Down

0 comments on commit c7f578f

Please sign in to comment.