mirror of
https://github.com/2006-Scape/2006Scape.git
synced 2026-07-03 00:31:51 +00:00
Def cleanup (#585)
* Object definition cleanup * Update ShopAssistant.java * stackables * notables * unused files * more junk * almost done * working * moving old methods to deprecated * update * fixed pickpocket typos * Update Pickpocket.java * Remove redundant method. Fix stall stealing * Documentation for deprecated methods * WIP commit partial removal. Has test and dump classes * Final cleanup * Move definitions from data folder to cfg * Temporarily moving definition loaders to GameEngine This is until loading can be done asynchronously. * Correct indentation.
This commit is contained in:
@@ -1,7 +1,8 @@
|
||||
package com.rs2.game.objects;
|
||||
|
||||
import org.apollo.cache.def.ObjectDefinition;
|
||||
|
||||
import com.rs2.game.players.Player;
|
||||
import com.rs2.world.clip.ObjectDefinition;
|
||||
|
||||
/**
|
||||
* ObjectDefaults
|
||||
@@ -17,7 +18,7 @@ public class ObjectDefaults {
|
||||
WEST = 3;
|
||||
|
||||
public static int getObjectType(Player player, int objectType) {
|
||||
String objectName = ObjectDefinition.getObjectDef(objectType).name;
|
||||
String objectName = ObjectDefinition.lookup(objectType).getName();
|
||||
if (objectName.contains("Wardrobe") || objectName.contains("chest") || objectName.contains("Cupboard") || objectName.contains("Coffin")) {
|
||||
return 10;
|
||||
} else if (objectName.contains("Curtain")) {
|
||||
|
||||
Reference in New Issue
Block a user