Removes monkeycube and chocolate unwrapping

Pointless time wasters that add nothing to the game experience. Also removed the two wrapped sprites for completeness.
This commit is contained in:
MrPerson
2016-04-25 18:20:01 -07:00
parent 3b6e237b26
commit 1a3aaff808
8 changed files with 9 additions and 57 deletions
+5 -9
View File
@@ -442,15 +442,11 @@
if(istype(O, /obj/item/weapon/reagent_containers/food/snacks/monkeycube))
var/obj/item/weapon/reagent_containers/food/snacks/monkeycube/M = O
if(M.wrapped)
user << "<span class='notice'>You need to unwrap [src] first!</span>"
return
else
user << "<span class='notice'>You place [src] under a stream of water...</span>"
user.drop_item()
M.loc = get_turf(src)
M.Expand()
return
user << "<span class='notice'>You place [src] under a stream of water...</span>"
user.drop_item()
M.loc = get_turf(src)
M.Expand()
return
var/obj/item/I = O
if(!I || !istype(I))