mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-12-27 19:47:42 +01:00
update signs after trades
This commit is contained in:
parent
343291b210
commit
2086b8c978
@ -421,6 +421,12 @@ public class EssentialsSign
|
|||||||
{
|
{
|
||||||
return block;
|
return block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void updateSign()
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -449,6 +455,11 @@ public class EssentialsSign
|
|||||||
{
|
{
|
||||||
return block;
|
return block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public final void updateSign()
|
||||||
|
{
|
||||||
|
sign.update();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -459,5 +470,7 @@ public class EssentialsSign
|
|||||||
void setLine(final int index, final String text);
|
void setLine(final int index, final String text);
|
||||||
|
|
||||||
public Block getBlock();
|
public Block getBlock();
|
||||||
|
|
||||||
|
void updateSign();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -49,6 +49,7 @@ public class SignTrade extends EssentialsSign
|
|||||||
charge.charge(player);
|
charge.charge(player);
|
||||||
Trade.log("Sign", "Trade", "Interact", sign.getLine(3), charge, username, trade, ess);
|
Trade.log("Sign", "Trade", "Interact", sign.getLine(3), charge, username, trade, ess);
|
||||||
}
|
}
|
||||||
|
sign.updateSign();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user