[PR #394] [MERGED] Update #13020

Open
opened 2026-06-06 12:21:54 +00:00 by Dark98 · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/2006-Scape/2006Scape/pull/394
Author: @mrextremez
Created: 3/12/2020
Status: Merged
Merged: 3/12/2020
Merged by: @dginovker

Base: masterHead: somefixes


📝 Commits (1)

📊 Changes

52 files changed (+1080 additions, -1038 deletions)

View changed files

2006Redone Client/bin/.gitignore (+35 -0)
📝 2006Redone Server/data/cfg/spawn-config.cfg (+12 -2)
📝 2006Redone Server/data/data/itemdef.json (+2 -2)
📝 2006Redone Server/src/main/java/com/rebotted/GameEngine.java (+1 -1)
📝 2006Redone Server/src/main/java/com/rebotted/game/content/combat/npcs/NpcCombat.java (+3 -2)
📝 2006Redone Server/src/main/java/com/rebotted/game/content/minigames/Barrows.java (+5 -4)
📝 2006Redone Server/src/main/java/com/rebotted/game/content/minigames/trawler/TrawlerWaitingRoom.java (+3 -3)
📝 2006Redone Server/src/main/java/com/rebotted/game/content/minigames/trawler/WaitingRoom.java (+2 -2)
📝 2006Redone Server/src/main/java/com/rebotted/game/content/skills/SkillData.java (+1 -1)
📝 2006Redone Server/src/main/java/com/rebotted/game/content/skills/core/Mining.java (+37 -16)
📝 2006Redone Server/src/main/java/com/rebotted/game/content/skills/crafting/JewelryMaking.java (+7 -15)
📝 2006Redone Server/src/main/java/com/rebotted/game/content/skills/crafting/Pottery.java (+11 -31)
📝 2006Redone Server/src/main/java/com/rebotted/game/content/skills/crafting/Spinning.java (+1 -3)
📝 2006Redone Server/src/main/java/com/rebotted/game/content/skills/firemaking/Firemaking.java (+1 -1)
📝 2006Redone Server/src/main/java/com/rebotted/game/content/skills/fletching/LogCutting.java (+10 -22)
📝 2006Redone Server/src/main/java/com/rebotted/game/content/skills/runecrafting/Tiaras.java (+1 -3)
📝 2006Redone Server/src/main/java/com/rebotted/game/content/skills/smithing/Smelting.java (+8 -3)
📝 2006Redone Server/src/main/java/com/rebotted/game/content/skills/smithing/Smithing.java (+12 -15)
2006Redone Server/src/main/java/com/rebotted/game/content/traveling/CarpetTravel.java (+59 -0)
📝 2006Redone Server/src/main/java/com/rebotted/game/dialogues/DialogueHandler.java (+117 -74)

...and 32 more files

📄 Description

Closes #393

Also included:

  • Added recieving random gems when mining (thanks to ben for pointing this out)
  • Reduced door usage delay
  • Random cleanup and deleted some unsued files/code
  • Fixed many npc item drop names (thanks to iizyy for pointing them out)
  • Fixed a few wizard tower doors
  • Did more cleanup with the some of the old boundary methods
  • Tidied up the discord commands and added the proper urls for them

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/2006-Scape/2006Scape/pull/394 **Author:** [@mrextremez](https://github.com/mrextremez) **Created:** 3/12/2020 **Status:** ✅ Merged **Merged:** 3/12/2020 **Merged by:** [@dginovker](https://github.com/dginovker) **Base:** `master` ← **Head:** `somefixes` --- ### 📝 Commits (1) - [`49f88eb`](https://github.com/2006-Scape/2006Scape/commit/49f88ebe52c7b10b8d65d2b68a2b5f3883fb1e91) Update ### 📊 Changes **52 files changed** (+1080 additions, -1038 deletions) <details> <summary>View changed files</summary> ➕ `2006Redone Client/bin/.gitignore` (+35 -0) 📝 `2006Redone Server/data/cfg/spawn-config.cfg` (+12 -2) 📝 `2006Redone Server/data/data/itemdef.json` (+2 -2) 📝 `2006Redone Server/src/main/java/com/rebotted/GameEngine.java` (+1 -1) 📝 `2006Redone Server/src/main/java/com/rebotted/game/content/combat/npcs/NpcCombat.java` (+3 -2) 📝 `2006Redone Server/src/main/java/com/rebotted/game/content/minigames/Barrows.java` (+5 -4) 📝 `2006Redone Server/src/main/java/com/rebotted/game/content/minigames/trawler/TrawlerWaitingRoom.java` (+3 -3) 📝 `2006Redone Server/src/main/java/com/rebotted/game/content/minigames/trawler/WaitingRoom.java` (+2 -2) 📝 `2006Redone Server/src/main/java/com/rebotted/game/content/skills/SkillData.java` (+1 -1) 📝 `2006Redone Server/src/main/java/com/rebotted/game/content/skills/core/Mining.java` (+37 -16) 📝 `2006Redone Server/src/main/java/com/rebotted/game/content/skills/crafting/JewelryMaking.java` (+7 -15) 📝 `2006Redone Server/src/main/java/com/rebotted/game/content/skills/crafting/Pottery.java` (+11 -31) 📝 `2006Redone Server/src/main/java/com/rebotted/game/content/skills/crafting/Spinning.java` (+1 -3) 📝 `2006Redone Server/src/main/java/com/rebotted/game/content/skills/firemaking/Firemaking.java` (+1 -1) 📝 `2006Redone Server/src/main/java/com/rebotted/game/content/skills/fletching/LogCutting.java` (+10 -22) 📝 `2006Redone Server/src/main/java/com/rebotted/game/content/skills/runecrafting/Tiaras.java` (+1 -3) 📝 `2006Redone Server/src/main/java/com/rebotted/game/content/skills/smithing/Smelting.java` (+8 -3) 📝 `2006Redone Server/src/main/java/com/rebotted/game/content/skills/smithing/Smithing.java` (+12 -15) ➕ `2006Redone Server/src/main/java/com/rebotted/game/content/traveling/CarpetTravel.java` (+59 -0) 📝 `2006Redone Server/src/main/java/com/rebotted/game/dialogues/DialogueHandler.java` (+117 -74) _...and 32 more files_ </details> ### 📄 Description Closes #393 - Sophanem city gates now functioning Closes #392 - Improved rug travel, added missing travel options Closes #391 - Added those curtains, along with many more curtains and other functional objects Closes #390 - Dramen branch now untradeable/same with staff Closes #389 - Lumbridge door should no longer get stuck, should fix other doors aswell Closes #388 - Added Rasolo npc spawn Closes #385 - Added missing fishing guild spawns Closes #384 - Added missing port khazard npcs and a few other missing npcs too Closes #379 - Added smelt x option Closes #334 - Fixed dragon dagger store price and fixed high alch/low alch value for it Closes #278 - Fixed strange numbers on runecrafting interface Closes #244 -These were previously fixed Also included: - Added recieving random gems when mining (thanks to ben for pointing this out) - Reduced door usage delay - Random cleanup and deleted some unsued files/code - Fixed many npc item drop names (thanks to iizyy for pointing them out) - Fixed a few wizard tower doors - Did more cleanup with the some of the old boundary methods - Tidied up the discord commands and added the proper urls for them --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
Dark98 added the pull-request label 2026-06-06 12:21:54 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: 2006-Scape/2006Scape#13020