mirror of
https://github.com/2006-Scape/2006Scape.git
synced 2026-07-05 08:39:04 +00:00
More fixes (#235)
- Dwarf cannon can now be seen by anyone and not just the person who sets it down (they can also see the rotation now) - Fixed doors being removed when clicking them - Removed banking command for regular players - Fixed nulodion now only gives if you have space - Updated nulodion message so it doesnt say to find him at home - Npcs wont follow you if you turn on the cantAttack comamand (for admins - Fixed gate at KBD - Fixed the gates at Ice giants in wildy #closes 132 #closes 203 #closes 211 #closes 6 also this one should be closed from previous patch #closes 219
This commit is contained in:
committed by
Daniel Ginovker
parent
9fb110bb41
commit
8af938548b
@@ -89,8 +89,7 @@ public class Bank10 implements PacketType {
|
||||
case 1121:
|
||||
case 1122:
|
||||
case 1123:
|
||||
player.getSmithing().readInput(player.playerLevel[player.playerSmithing],
|
||||
Integer.toString(removeId), player, 10);
|
||||
player.getSmithing().readInput(player.playerLevel[player.playerSmithing], Integer.toString(removeId), player, 10);
|
||||
break;
|
||||
|
||||
}
|
||||
|
||||
@@ -122,11 +122,7 @@ public class ClickObject implements PacketType {
|
||||
}
|
||||
|
||||
//todo: check if it's a door before fire handle
|
||||
Doors.getSingleton().handleDoor(p.objectId, p.objectX, p.objectY, p.heightLevel, p);
|
||||
|
||||
/*if (client.performingAction) {
|
||||
return;
|
||||
}*/
|
||||
Doors.getSingleton().handleDoor(p, p.objectId, p.objectX, p.objectY, p.heightLevel);
|
||||
|
||||
if (Stalls.isObject(p.objectId)) {
|
||||
Stalls.attemptStall(p, p.objectId, p.objectX, p.objectX);
|
||||
|
||||
@@ -42,9 +42,6 @@ public class Commands implements PacketType {
|
||||
public static void playerCommands(Player player, String playerCommand, String[] arguments) {
|
||||
switch (playerCommand.toLowerCase())
|
||||
{
|
||||
case "bank":
|
||||
player.getPacketSender().openUpBank();
|
||||
break;
|
||||
case "claimvote":
|
||||
if(!GameEngine.ersSecret.equals("")) {
|
||||
final String playerName = player.playerName;
|
||||
|
||||
Reference in New Issue
Block a user