Guest User

Untitled

a guest
Nov 19th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. Find this:
  2.  
  3. if($this->lock){
  4. if(!$this->isAllowed($this->packet['m']['u'],6)) {$this->sendMessage("Sorry, Locking is on."); return;}
  5. else{
  6. echo "";
  7. }
  8. }
  9. Replace it with this:
  10.  
  11. if($this->packet['m']['t']{0} == "!"){
  12. if($this->lock){
  13. if(!$this->isAllowed($this->packet['m']['u'],6)) {$this->sendMessage("Sorry, Locking is on."); return;}
  14. else{
  15. echo ""; //do nothing.
  16. }
  17. }
  18. }
Add Comment
Please, Sign In to add comment